栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

获取Android应用专属缓存存储目录的实例

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

获取Android应用专属缓存存储目录的实例

如果你想摆脱缓存目录使用的尴尬:找不到目录?忘记申请读写权限?害怕污染用户存储空间?……请往下看

SD卡缓存目录

当应用需要将图片或者文件缓存到SD卡中时要去申请创建目录,有下面几种途径

我们可以通过API调用应用专属目录:

// /storage/emulated/0/Android/data/app_package_name/files/Pictures
Content.getExternalFilesDir(Environment.DIRECTORY_PICTURES); 
// /storage/emulated/0/Android/data/app_package_name/cache
Content.getExternalCacheDir(); 

上面两个目录是专属于当前app的,当应用被删除时,上面目录下的文件也会清空

内存缓存目录

相对于应用的专属SD卡缓存有两个内存缓存地址:

Content. getCacheDir(); // /data/data/app_package_name/cache
Content. getFilesDir(); // /data/data/app_package_name/files

这两个目录中的文件也会随着app的删除而清空

当系统版本大于等于4.4时,对通过上面4个API调用得到的目录进行文件的读写操作不需要申请SD卡的读写权限,所以6.0及以上系统使用时也不需要动态申请读写权限

使用注意事项

当存储比较大的文件时,如图片等文件存储在SD卡对应的目录下

应用的内存缓存目录只有应用本身能对其进行读写操作,外部应用不行,如相机应用 (内存目录读写权限:rwxr-x–x,SD卡缓存目录读写权限:rwxrwx—)

即使是通过自定义路径得到的上述目录,在系统版本大于等于4.4时也不需要申请SD卡读写权限

API使用及方法封装


public static File getCacheDirectory(Context context,String type) {
  File appCacheDir = getExternalCacheDirectory(context,type);
  if (appCacheDir == null){
    appCacheDir = getInternalCacheDirectory(context,type);
  }

  if (appCacheDir == null){
    Log.e("getCacheDirectory","getCacheDirectory fail ,the reason is mobile phone unknown exception !");
  }else {
    if (!appCacheDir.exists()&&!appCacheDir.mkdirs()){
      Log.e("getCacheDirectory","getCacheDirectory fail ,the reason is make directory fail !");
    }
  }
  return appCacheDir;
}


public static File getExternalCacheDirectory(Context context,String type) {
  File appCacheDir = null;
  if( Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {
    if (TextUtils.isEmpty(type)){
      appCacheDir = context.getExternalCacheDir();
    }else {
      appCacheDir = context.getExternalFilesDir(type);
    }

    if (appCacheDir == null){// 有些手机需要通过自定义目录
      appCacheDir = new File(Environment.getExternalStorageDirectory(),"Android/data/"+context.getPackageName()+"/cache/"+type);
    }

    if (appCacheDir == null){
      Log.e("getExternalDirectory","getExternalDirectory fail ,the reason is sdCard unknown exception !");
    }else {
      if (!appCacheDir.exists()&&!appCacheDir.mkdirs()){
 Log.e("getExternalDirectory","getExternalDirectory fail ,the reason is make directory fail !");
      }
    }
  }else {
    Log.e("getExternalDirectory","getExternalDirectory fail ,the reason is sdCard nonexistence or sdCard mount fail !");
  }
  return appCacheDir;
}


public static File getInternalCacheDirectory(Context context,String type) {
  File appCacheDir = null;
  if (TextUtils.isEmpty(type)){
    appCacheDir = context.getCacheDir();// /data/data/app_package_name/cache
  }else {
    appCacheDir = new File(context.getFilesDir(),type);// /data/data/app_package_name/files/type
  }

  if (!appCacheDir.exists()&&!appCacheDir.mkdirs()){
    Log.e("getInternalDirectory","getInternalDirectory fail ,the reason is make directory fail !");
  }
  return appCacheDir;
}

以上这篇获取Android应用专属缓存存储目录的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/155690.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号