美文网首页
Android 获取cache缓存的目录路径

Android 获取cache缓存的目录路径

作者: cheng2290 | 来源:发表于2017-08-14 10:30 被阅读0次

    Android开发中,有时需要知道cache缓存的路径。我写了一个静态类,供大家能参考

    public class CommonUtil {

    /**
    * 获取cache路径
    *
    * @param context
    * @return
    */
    public static String getDiskCachePath(Context context) {
    if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState()) || !Environment.isExternalStorageRemovable()) {
    return context.getExternalCacheDir().getPath();
    } else {
    return context.getCacheDir().getPath();
    }
    }
    }

    相关文章

      网友评论

          本文标题:Android 获取cache缓存的目录路径

          本文链接:https://www.haomeiwen.com/subject/tvoyrxtx.html