I have this array
String[][] someArrayOfData={{"there","is"},{"alot","of data here"}};
I want to be able to save this array so I can load and access it the next time I run the program.
I dont mind having to use just a String[]
as well. I have tried to write it to a notepad file but that is just a major irritation, is it possible to store variables externally to avoid the hassle of writing to multiple notepad files or using delineators?