无法写入 Android 只读文件系统中的文件
我正在尝试在 Android 中写入一个文件。
private void writeScoreToFile(BlastScore result)
{
try{
FileWriter fstream = new FileWriter(CaptureActivity.BLAST_SCORES,true);
BufferedWriter out = new BufferedWriter(fstream);
out.write(Integer.toString(result.getBlastScore()));
out.close();
}catch (Exception e){
System.err.println("Write Error: " + e.getMessage());
}
}
我收到错误:
10-28 21:04:11.200: W/System.err(669): Write Error: /BlastScores.txt (Read-only file system)
我该如何解决这个问题?
I am trying to write a file in Android.
private void writeScoreToFile(BlastScore result)
{
try{
FileWriter fstream = new FileWriter(CaptureActivity.BLAST_SCORES,true);
BufferedWriter out = new BufferedWriter(fstream);
out.write(Integer.toString(result.getBlastScore()));
out.close();
}catch (Exception e){
System.err.println("Write Error: " + e.getMessage());
}
}
I get the error:
10-28 21:04:11.200: W/System.err(669): Write Error: /BlastScores.txt (Read-only file system)
How can I resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据错误,它正在尝试将文件写入文件系统根目录。您的应用程序只允许写入特定文件夹。
在一篇文章中找到这个:
Based on the error it is trying to write a file to the filesystem root. Your application is only allowed write to specific folders.
Found this on an article:
您正在尝试写入根目录。您可能希望写入应用程序的目录,而不是根目录。
为此,请使用 Context.openFileInput< /a> 和 Context.openFileOutput 代替
新的 FileWriter
的。You're trying to write to the root directory. You probably want to be writing to your app's directory, not root.
To do that, use Context.openFileInput and Context.openFileOutput instead of
new FileWriter
.