Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
fos = openFileOutput(FILENAME, Context.MODE_PRIVATE); fos.write(FirstNmstring.getBytes()); fos.close();
我使用此代码将数据存储在手机内部存储器中的文件中。就像我在我的应用程序中再次输入一样,现有记录被删除。我想添加我输入的每个条目。任何人都可以帮助我解决这个问题。
您可以打开文件进行追加
fos = openFileOutput(FILENAME, Context.MODE_APPEND);
您写入的所有内容都将附加在文件末尾。