i use the code below to write a file to the sd card and read the content of it:

try {
        if (root.canWrite())
        {
                File rootdir = Environment.getExternalStorageDirectory();
                File yourFile = new File(rootdir, "tomato50.txt");
                FileWriter filewriter = new FileWriter(file,true);                                                                     
                BufferedWriter out = new BufferedWriter(filewriter);
            for (int k=0; k<assignArr.size(); k++)
            {
               out.write(assignArr.get(k) + "\n");
               Toast.makeText(MainActivity.this, "out: " + assignArr.get(k), Toast.LENGTH_LONG).show();
            }
            out.close();
          }
          } catch (IOException e) {
          Log.e("TAG", "Could not write file " + e.getMessage());


try { 
       File rootdir = Environment.getExternalStorageDirectory();
       File yourFile = new File(rootdir, "tomato50.txt");
       FileReader filereader = new FileReader(yourFile);
       BufferedReader br = new BufferedReader(filereader);
       String line; 
       while((line = br.readLine()) != null) 
       {
           assignArrBe.add(line); 
           Toast.makeText(MainActivity.this, "Read from file: " + line, Toast.LENGTH_LONG).show();
        } 
      br.close();
       }
      catch (IOException e) 
     { 
        e.printStackTrace(); 
     }

Question is: how can i write to the phone memory and read from it?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You will need to root your phone in order to get write access to any phone folder.

If what you want is to write in the app-specific internal storage, then you can follow this guide: http://developer.android.com/guide/topics/data/data-storage.html#filesInternal

link|improve this answer
Partially true: this code is for ExternalStorage. You can use the external storage in every phone. – Redax May 17 '11 at 8:49
@Redax then please explain better what you mean by "how can I write to the phone memory" because I understood that you were asking to write to the phone file system. – Aleadam May 17 '11 at 13:43
I mean some i want to add opportunity to save some data when there is no sd card in the phone. – erdomester May 17 '11 at 17:22
@erdomester then you have the two options above. IMHO, you want the second one (internal datastorage). Did you follow that link? – Aleadam May 17 '11 at 17:42
feedback

First of all you have to put in your manifest file this line:

...
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
...
</manifest>

If it is not enough, can you explain the problem with more details?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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