file f=new file(MyPath);f.delete();
我使用了权限WRITE_EXTERNAL_STORAGE和READ_EXTERNAL_STORAGE,但它在AndroID 5中不起作用.
Logcat消息:
java.io.fileNotFoundException: storage/external_SD/mm.txt: open Failed: EACCES (Permission denIEd)
清单文件:
<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID" package="com.example.mahestan_programming.myapplication"> <uses-permission androID:name="androID.permission.READ_EXTERNAL_STORAGE"/> <uses-permission androID:name="androID.permission.WRITE_EXTERNAL_STORAGE"/> <application androID:allowBackup="true" androID:icon="@mipmap/ic_launcher" androID:label="@string/app_name" androID:supportsRtl="true" androID:theme="@style/Apptheme"> <activity androID:name=".MainActivity"> <intent-filter> <action androID:name="androID.intent.action.MAIN" /> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity> </application></manifest>
解决方法WE CANNOT DELETE AND WRITE fileS FROM MICRO SD-CARD SINCE VERSION 4.4. It is read only Now.
storage/external_SD/mm.txt
那不是一条有效的道路.你应该用
/storage/external_SD/mm.txt
从AndroID 4.4开始,应用程序无法再写入micro SD卡了.
谷歌决定这样做.
我们必须忍受它.但很难.
总结以上是内存溢出为你收集整理的如何从android 5中的外部存储中删除文件全部内容,希望文章能够帮你解决如何从android 5中的外部存储中删除文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)