我正在尝试覆盖Android应用程序中的文本文件,我已经完成了,
我使用以下方法在一个活动中创建了一个文本文件:
FileOutputStream create_file = null;
OutputStreamWriter osw = null;
create_file = openFileOutput("filename.txt", Context.MODE_WORLD_WRITEABLE);
osw = new OutputStreamWriter(create_file);
osw.write("text goes here");
osw.close();
create_file.close();
我已在另一个活动中打开该文件,使用以下方式逐行读取内容:
FileInputStream open_file = openFileInput("filename.txt");
InputStreamReader isr = new InputStreamReader(open_file);
BufferedReader inRd = new BufferedReader(isr);
while ((getText = inRd.readLine()) != null)
{
Toast.makeText(getApplicationContext(), getText, Toast.LENGTH_SHORT).show();
}
通过这个我已经验证了内容是否存储,并确保该文件与内容一起存在,但当我尝试使用以下内容覆盖该文件时:
FileOutputStream create_file = null;
OutputStreamWriter osw = null;
create_file = new FileOutputStream(new File(PasswordUtil.pswrd_file), false);
osw = new OutputStreamWriter(create_file);
osw.write(getString);
我有一个例外,
java.io.FileNotFoundException:/ filename.txt (Read-only file system)
注意:文本文件存储在内部存储中。
任何帮助,提前谢谢。
答案 0 :(得分:3)
我找到了FileNotFoundException
的原因,因为它不是以下行:
create_file = new FileOutputStream(new File("filename.txt", false));
我们必须指定该文件的路径,对我来说,我已将其存储在内部存储中,并且我给出了路径
"/data/data/<Package-Name>/files/" + "filename.txt"
我已经改变了这样的覆盖编码,
FileOutputStream overWrite = new FileOutputStream("/data/data/<Package-Name/files/" + "filename.txt", false);
overWrite.write(getString.getBytes());
overWrite.flush();
overWrite.close();
现在一切都运转良好。