欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

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

时间:2021-03-17 09:42:21|栏目: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?Cx,SD卡缓存目录读写权限:rwxrwx―)

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

API使用及方法封装

/**
 * 获取应用专属缓存目录
 * android 4.4及以上系统不需要申请SD卡读写权限
 * 因此也不用考虑6.0系统动态申请SD卡读写权限问题,切随应用被卸载后自动清空 不会污染用户存储空间
 * @param context 上下文
 * @param type 文件夹类型 可以为空,为空则返回API得到的一级目录
 * @return 缓存文件夹 如果没有SD卡或SD卡有问题则返回内存缓存目录,否则优先返回SD卡缓存目录
 */
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;
}

/**
 * 获取SD卡缓存目录
 * @param context 上下文
 * @param type 文件夹类型 如果为空则返回 /storage/emulated/0/Android/data/app_package_name/cache
 *       否则返回对应类型的文件夹如Environment.DIRECTORY_PICTURES 对应的文件夹为 .../data/app_package_name/files/Pictures
 * {@link android.os.Environment#DIRECTORY_MUSIC},
 * {@link android.os.Environment#DIRECTORY_PODCASTS},
 * {@link android.os.Environment#DIRECTORY_RINGTONES},
 * {@link android.os.Environment#DIRECTORY_ALARMS},
 * {@link android.os.Environment#DIRECTORY_NOTIFICATIONS},
 * {@link android.os.Environment#DIRECTORY_PICTURES}, or
 * {@link android.os.Environment#DIRECTORY_MOVIES}.or 自定义文件夹名称
 * @return 缓存目录文件夹 或 null(无SD卡或SD卡挂载失败)
 */
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;
}

/**
 * 获取内存缓存目录
 * @param type 子目录,可以为空,为空直接返回一级目录
 * @return 缓存目录文件夹 或 null(创建目录文件失败)
 * 注:该方法获取的目录是能供当前应用自己使用,外部应用没有读写权限,如 系统相机应用
 */
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代码

下一篇:Android自定义View实现shape图形绘制

本文标题:获取Android应用专属缓存存储目录的实例

本文地址:http://www.codeinn.net/misctech/82777.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有