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,

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can write to the SD card by using this path, "\sdcard\file_name"

and read it this way,

 InputStream instream = null;

    as

  InputStream instream = openFileInput("/sdcard/filename");

    // if file the available for reading
    if (instream != null) {
      // prepare the file for reading
      InputStreamReader inputreader = new InputStreamReader(instream);
      BufferedReader buffreader = new BufferedReader(inputreader);

      String line;

      // read every line of the file into the line-variable, on line at the time
      try {
        while (( line = buffreader.readLine()) != null) {
           Log.i(TAG, "line = "+line);
          }
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    }

    // close the file again
    try {
        instream.close();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
link|improve this answer
1  
yes, but i need to write it to the application's file system, not the external storage. – blacker Jun 30 '11 at 6:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.