[android-developers] Re: Write assets

2011-09-13 Thread amon wu
My code snippets: 1. String filePath = file:///assets/android.txt; 2. OutputStream os= openFileOutput(filePath, MODE_WORLD_WRITEABLE); 3. OutputStreamWriter osw = new OutputStreamWriter(os); 4. outWriter.write(hello...); 5. outWriter.flush(); 6. outWriter.close(); The

[android-developers] Re: Write assets

2011-09-12 Thread Zsolt Vasvari
Have you though of the assets being read only? Even the name suggests that it might be. On Sep 13, 12:29 pm, amon wu amon.wu1...@gmail.com wrote: Hi, My case 1: I am trying to write a file into folder 'Assets' for a test, but I cannot do it. My case 2: I write the into sdcard , then copy