无法写入 Android 只读文件系统中的文件

发布于 2024-12-12 16:54:15 字数 626 浏览 4 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

随遇而安 2024-12-19 16:54:20

根据错误,它正在尝试将文件写入文件系统根目录。您的应用程序只允许写入特定文件夹。

在一篇文章中找到这个:

/data/data/your_project_package_structure/files/

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:

/data/data/your_project_package_structure/files/
万劫不复 2024-12-19 16:54:19

您正在尝试写入根目录。您可能希望写入应用程序的目录,而不是根目录。

为此,请使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文