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();