手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >Android4.4下MediaProvider无法向外置SD卡中文件写数据的解决方法
Android4.4下MediaProvider无法向外置SD卡中文件写数据的解决方法
摘要:本文实例讲述了Android4.4下MediaProvider无法向外置SD卡中文件写数据的解决方法。分享给大家供大家参考,具体如下:And...

本文实例讲述了Android4.4下MediaProvider无法向外置SD卡中文件写数据的解决方法。分享给大家供大家参考,具体如下:

Android4.4平台限制应用对外置SD卡的读写权限。MediaProvider通过 checkAccess方法 限制对外置SD卡的读写。

private void checkAccess(Uri uri, File file, int modeBits) throws FileNotFoundException { final boolean isWrite = (modeBits & MODE_WRITE_ONLY) != 0; final String path; try { path = file.getCanonicalPath(); } catch (IOException e) { throw new IllegalArgumentException("Unable to resolve canonical path for " + file, e); } Context c = getContext(); boolean readGranted = (c.checkCallingOrSelfUriPermission(uri, Intent.FLAG_GRANT_READ_URI_PERMISSION) == PackageManager.PERMISSION_GRANTED); if (path.startsWith(sExternalPath) || path.startsWith(sLegacyPath)) { if (!readGranted) { c.enforceCallingOrSelfPermission( READ_EXTERNAL_STORAGE, "External path: " + path); } if (isWrite) { if (c.checkCallingOrSelfUriPermission(uri, Intent.FLAG_GRANT_WRITE_URI_PERMISSION) != PackageManager.PERMISSION_GRANTED) { c.enforceCallingOrSelfPermission( WRITE_EXTERNAL_STORAGE, "External path: " + path); } } } else if (path.startsWith(sCachePath)) { if (!readGranted) { c.enforceCallingOrSelfPermission( ACCESS_CACHE_FILESYSTEM, "Cache path: " + path); } //外置SD卡,isWrite = true } else if (isWrite) { // don't write to non-cache, non-sdcard files. throw new FileNotFoundException("Can't access " + file); } else if (isSecondaryExternalPath(path)) { // read access is OK with the appropriate permission if (!readGranted) { c.enforceCallingOrSelfPermission( READ_EXTERNAL_STORAGE, "External path: " + path); } } else { checkWorldReadAccess(path); } }

从以上代码我们看出,如果sExternalPath 没有指向外置SD卡并且path 是外置SD卡的文件路径,那么该方法 就会抛出FileNotFoundException,sExternalPath 一般都是指向内部存储

在应用中 我们通常 通过contentresolver.openOutputStream(uri) 来打开存储卡上媒体文件的文件流,如果媒体文件在外置SD卡上,那么我们就无法打开对应的文件流,自然肯定无法向其中写数据。

为了解决该问题,我们只能改变Android4.4平台下Mediaprovider 对向SD卡写数据的限制,具体修改方式如下

private void checkAccess(Uri uri, File file, int modeBits) throws FileNotFoundException { final boolean isWrite = (modeBits & MODE_WRITE_ONLY) != 0; final String path; try { path = file.getCanonicalPath(); } catch (IOException e) { throw new IllegalArgumentException("Unable to resolve canonical path for " + file, e); } Context c = getContext(); boolean readGranted = (c.checkCallingOrSelfUriPermission(uri, Intent.FLAG_GRANT_READ_URI_PERMISSION) == PackageManager.PERMISSION_GRANTED); if (path.startsWith(sExternalPath) || path.startsWith(sLegacyPath) || isSecondaryExternalPath(path)) { if (!readGranted) { c.enforceCallingOrSelfPermission( READ_EXTERNAL_STORAGE, "External path: " + path); } if (isWrite) { if (c.checkCallingOrSelfUriPermission(uri, Intent.FLAG_GRANT_WRITE_URI_PERMISSION) != PackageManager.PERMISSION_GRANTED) { c.enforceCallingOrSelfPermission( WRITE_EXTERNAL_STORAGE, "External path: " + path); } } } else if (path.startsWith(sCachePath)) { if (!readGranted) { c.enforceCallingOrSelfPermission( ACCESS_CACHE_FILESYSTEM, "Cache path: " + path); } //外置SD卡,isWrite = true } else if (isWrite) { // don't write to non-cache, non-sdcard files. throw new FileNotFoundException("Can't access " + file); } else { checkWorldReadAccess(path); } },

对于满足isSecondaryExternalPath(path) 的文件路径,我们都可以进行读写,对于外置SD卡的文件而言 isSecondaryExternalPath(path) 肯定为true

希望本文所述对大家Android程序设计有所帮助。

【Android4.4下MediaProvider无法向外置SD卡中文件写数据的解决方法】相关文章:

Android上使用jspf插件框架的方法

Android编程实现图标拖动效果的方法

Android应用开发SharedPreferences存储数据的使用方法

Android 设置应用全屏的两种解决方法

Android中使用pull解析器操作xml文件的解决办法

操作SD卡中文件夹和文件的方法

Android ViewPager相册横向移动的实现方法

android将Bitmap对象保存到SD卡中的方法

Android加载图片内存溢出问题解决方法

android不同activity之间共享数据解决方法

精品推荐
分类导航