I have been searched on the forum for a while now, but can't find my question. I see a lot of examples of how to write a String Array to internal storage, but not how to read them again.
I have a String Array which is saved by:
String FILENAME = "data1";
fos = openFileOutput(FILENAME, Context.MODE_APPEND);
for(int j=1;j<=PupilAmount;j++) {
fos.write(pup[j].getBytes());
}
fos.close();
But how do I read the variables again, and save it in a new variable on my new Activity?