I am trying to do what FileWriter.println()
and BufferedReader.readLine()
do in Android, but in android they only allow writing it into the sdcard using those method.
I need to write some integer values into the file and then read it line by line at a later time. Some of the file operation methods I found require the length of the data read to be specified, which is not possible.
Can anyone point me to the right method? Preferably with an example of the usage...
Regards