Android | 创建文件时出现java.io.IOException: Permission denied
程序员文章站
2022-05-02 17:43:07
...
Android8.0上,想要创建文件cache.txt,code如下:
File filePath = new File("storage/udisk2/cache.txt");
if (!filePath.exists()) {
Log.d(TAG,"file is not exist");
filePath.createNewFile();
}
但是却抛出了异常:System.err: java.io.IOException: Permission denied.
看到Permission denied,就想是不是因为没有在manifest中添加对应的权限?
那就加个WRITE_EXTERANL_STORAGE权限试试看:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
然而并没有什么卵用,IOException还是出现了,文件还是没有创建成功,也就是说不是权限问题。
于是搜索该问题的解决方案,终于在https://bbs.csdn.net/topics/350063921中找到了。
Android平台中,能操作文件夹的只有两个地方:
- sdcard
- data/data/<package-name>/files
于是修改了一下code:
File filePath = new File("data/data/com.test.testipc/cache.txt");
if (!filePath.exists()) {
Log.d(TAG,"file is not exist");
filePath.createNewFile();
}
其中应用的包名为com.test.testipc,这样修改后,文件就创建成功了。
更多和storage相关的可查阅API Docs:docs/guide/topics/data/data-storage.html#filesExternal
推荐阅读
-
SQL Server根据分区表名查找所在的文件及文件组实现脚本
-
C#生成PDF文件流
-
SQL语句实现查询并自动创建Missing Index
-
sql server 2000中禁止创建表(权限设置方法)
-
pandas创建新Dataframe并添加多行的实例
-
解决Laravel5.x的php artisan migrate数据库迁移创建操作报错SQLSTATE[42000]
-
ERROR 1045: Access denied for user: root@localhost (Using password: NO)
-
教你如何把.txt文件改成泰捷视频自动识别的.tv文件
-
web.py中调用文件夹内模板的方法
-
/usr/bin/install: 无法创建一般文件‘/usr/local/man/man1/cjpeg.1’: 没有那个文件