作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如 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/
我是一名优秀的程序员,十分优秀!