如何在android中保存在原始文件夹中的文本文件中读取和写入字符串,以及如何在android中清除该文件的内容?
我这样做了,我的“temp.txt”文件在/ raw文件夹中。但我没有得到任何文件输出。此外,我没有收到任何错误。
FileOutputStream fos = openFileOutput("temp", Context.MODE_APPEND);
fos.write("Example Text in a file".getBytes());
fos.flush();
fos.close();