gpt4 book ai didi

Android:使用 createNewFile() 方法创建文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:56 24 4
gpt4 key购买 nike

如 android 文档中所述,要创建一个位于应用程序目录中的新文件,可以使用 Context 类中的方法:openFileOutput()

但是,如果我使用 File 类中的简单 createNewFile() 方法,文件位于何处?

最佳答案

CreateNewFile() 是这样使用的:

File file = new File("data/data/your package name/test.txt");
if (!file.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}

所以你会告诉文件应该在哪里创建。请记住,您只能在您的包上创建新文件。即“数据/数据/你的包名/”。

关于Android:使用 createNewFile() 方法创建文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7011991/

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