I'm reading about the files manipulation in android, but all methods what I found not works. In the DDMS perspective i'm not see the files folder, and i've tried to read the file, but not work, see my code above:
Using java Syntax Highlighting
- FileOutputStream fOut = openFileOutput("a.txt",
- MODE_WORLD_READABLE);
- OutputStreamWriter osw = new OutputStreamWriter(fOut);
- // Write the string to the file
- osw.write("Hello World!");
- /* ensure that everything is
- * really written out and close */
- osw.flush();
- osw.close();
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
This is throws a FileNotFoundException, I've tried to read a file, and it not work
Thanks for your help


smile it is the key that fits the lock of everybody's heart

