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

前端之家收集整理的这篇文章主要介绍了Android:使用createNewFile()方法创建文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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();
        }
}

因此,您将告诉文件应在何处创建它.请记住,您只能在包装上创建新文件.那就是“数据/数据/你的包名/”.

原文链接:https://www.f2er.com/android/318461.html

猜你在找的Android相关文章