Android Mode saving and loading txt file

@lve0200 ====

so i tested and it works

  • myfile.txt is in the data folder, nothing more
void setup(){
 size(800,600); 
 String[] lines = loadStrings(dataPath("myFile.txt"));
 println (lines[1]);
///this println my first item without error
 
}