I have a file named counter.txt in assets folder of my android project, and at runtime i want to overwrite the content of the file. But its not reflecting, plz help me

i have used below code.

String FILENAME = "counter.txt";
String string = "hello world!";

FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(string.getBytes());
fos.close();
link|improve this question

44% accept rate
feedback

3 Answers

AFAIK you can't write/update in assets folder. Only you can do is read.

link|improve this answer
+1 to this answer. – Michell Bak Feb 8 at 10:21
so is there any other way of storing and updating the data in android.....i tried using Shared Preferences and i was successful in storing my data but when i choose to "Clear Data" form Application settings,the saved data is getting deleted. So i tired storage using text files in assets folder and u answered its not possible so there an alternative solution??? – mobilemagic Feb 8 at 10:23
If you Clear Data, it will clear all your application data. You can write files on the SDCard. – Lalit Poptani Feb 8 at 10:27
i want to store confidential data and storing it on SDCard is to risky as it is removable media. I also tried disabling "Clear Data" button but its too not happening. Can u help me in dis?? – mobilemagic Feb 8 at 10:33
SDCard can't be secure, you can encrypt your data before writing in the file, but then to you won't be able to restrict user to delete your file. – Lalit Poptani Feb 8 at 10:38
feedback

more precisely, you can't make any changes to the 'asset' folder in runtime, through your code, but after you compile your codes and get the apk file,you can unzip it, change the contents of the 'asset' folder and zip all the files to apk again, however,you must sign the apk file again to make it work.

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.