gpt4 book ai didi

java - 无法写入文件 - 为什么?

转载 作者:行者123 更新时间:2023-12-01 22:07:20 27 4
gpt4 key购买 nike

我正在尝试将其保存到 Android 中的长期文件存储中,并在此过程中创建一个新文件。这段代码在 logcat 的帮助很少的情况下不断崩溃。

谢谢。

public void save (String text) {
FileOutputStream fos = null;
try {
fos = openFileOutput("logfile.txt", MODE_PRIVATE);
fos.write(text.getBytes());
} catch (FileNotFoundException e)
{} catch (IOException e) {
e.printStackTrace();
} finally {
if(fos != null)
{
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

我希望它创建一个名为 logfile.txt 的文件并向其中打印文本,但它却崩溃了。

最佳答案

尝试类似的操作,以便从 tmp/私有(private)存储中的 File 获取 FileOutputStream:

// File file = File.createTempFile("logfile", ".txt");
File file = new File(getFilesDir(), "logfile.txt");
FileOutputStream fos = new FileOutputStream(file);

生成的路径应为/data/data/tld.domain.package/files/logfile.txt

file.getAbsolutePath() 具有该值。

参见Save a file on internal storage .

关于java - 无法写入文件 - 为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58681925/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com