91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

獲取Android應用專屬緩存存儲目錄的實例

發布時間:2020-10-18 17:28:42 來源:腳本之家 閱讀:351 作者:wangShanCode 欄目:移動開發

如果你想擺脫緩存目錄使用的尷尬:找不到目錄?忘記申請讀寫權限?害怕污染用戶存儲空間?……請往下看

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使用及方法封裝

/**
 * 獲取應用專屬緩存目錄
 * 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應用專屬緩存存儲目錄的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

耿马| 岳阳县| 肥西县| 阳东县| 九龙坡区| 玉山县| 华容县| 凉城县| 台南县| 开封县| 乌鲁木齐县| 贵州省| 全椒县| 平安县| 建瓯市| 新乡市| 当阳市| 平果县| 伊宁市| 武强县| 瓦房店市| 胶州市| 句容市| 濮阳县| 安陆市| 郑州市| 平阳县| 凉城县| 托里县| 乐业县| 新沂市| 芷江| 江达县| 安丘市| 上饶县| 扶余县| 兰坪| 邹城市| 青铜峡市| 洛隆县| 资讯|