如何删除缓存中存储的文件? (机器人)

时间:2015-04-27 10:34:07

标签: java android fileinputstream

我无法删除存储在缓存中的文件。我使用缓存有几个目的。我正在阅读和写作,但无法删除。有人可以帮帮我吗?

//write
   public static void writeObject(Context context, String key, Object object)
                                  throws IOException {
            Log.d("Cache", "WRITE: context");
            FileOutputStream fos = context.openFileOutput(key, Context.MODE_PRIVATE);
            ObjectOutputStream oos = new ObjectOutputStream(fos);
            oos.writeObject(object);
            oos.close();
            fos.close();
   }

//read
   public static Object readObject(Context context, String key) throws IOException,
         ClassNotFoundException {
      FileInputStream fis = context.openFileInput(key);
      ObjectInputStream ois = new ObjectInputStream(fis);
      Object object = ois.readObject();
      return object;
   }

//delete
   public static void clearCahe(String key) throws IOException,ClassNotFoundException {
        File file = new File(key);
        file.delete();
   }

3 个答案:

答案 0 :(得分:2)

context.openFileOutput(key将文件写入内部存储器。您可以使用getFilesDir()找到的路径,看起来像/data/data/<yourpackagename>/files

因此,如果您要删除文件&#39;键&#39;您必须将File file = new File(path)的路径设置为String path = getFilesDir().getAbsolutePath() + "/" + key;

使用file.exists()检查文件是否存在!

答案 1 :(得分:0)

使用它来清除应用程序数据。

  public void clearApplicationData() 
    {
        File cache = getCacheDir();
        File appDir = new File(cache.getParent());
        if (appDir.exists()) {
            String[] children = appDir.list();
            for (String s : children) {
                if (!s.equals("lib")) {
                    deleteDir(new File(appDir, s));Log.i("TAG", "**************** File /data/data/APP_PACKAGE/" + s + " DELETED *******************");
                }
            }
        }
    }

    public static boolean deleteDir(File dir) 
    {
        if (dir != null &amp;&amp; dir.isDirectory()) {
            String[] children = dir.list();
            for (int i = 0; i < children.length; i++) {
                boolean success = deleteDir(new File(dir, children[i]));
                if (!success) {
                    return false;
                }
            }
        }
        return dir.delete();
    }

答案 2 :(得分:0)

<强>文件

与缓存目录一样,您的应用程序还有一个特定于应用程序的目录,用于保存文件。此应用程序中的文件将一直存在,直到应用程序明确删除它们或卸载应用程序。您通常使用Context.getFilesDir()访问此目录。这可以在应用信息屏幕上显示为各种内容,但在屏幕截图中,这是&#34; USB存储数据&#34;。

注意:如果您想明确放置在外部媒体(通常是SD卡)上,可以使用Context.getExternalFilesDir(String type)

简单缓存管理器:

public class CacheManager {

    private static final long MAX_SIZE = 5242880L; // 5MB

    private CacheManager() {

    }

    public static void cacheData(Context context, byte[] data, String name) throws IOException {

        File cacheDir = context.getCacheDir();
        long size = getDirSize(cacheDir);
        long newSize = data.length + size;

        if (newSize > MAX_SIZE) {
            cleanDir(cacheDir, newSize - MAX_SIZE);
        }

        File file = new File(cacheDir, name);
        FileOutputStream os = new FileOutputStream(file);
        try {
            os.write(data);
        }
        finally {
            os.flush();
            os.close();
        }
    }

    public static byte[] retrieveData(Context context, String name) throws IOException {

        File cacheDir = context.getCacheDir();
        File file = new File(cacheDir, name);

        if (!file.exists()) {
            // Data doesn't exist
            return null;
        }

        byte[] data = new byte[(int) file.length()];
        FileInputStream is = new FileInputStream(file);
        try {
            is.read(data);
        }
        finally {
            is.close();
        }

        return data;
    }

    private static void cleanDir(File dir, long bytes) {

        long bytesDeleted = 0;
        File[] files = dir.listFiles();

        for (File file : files) {
            bytesDeleted += file.length();
            file.delete();

            if (bytesDeleted >= bytes) {
                break;
            }
        }
    }

    private static long getDirSize(File dir) {

        long size = 0;
        File[] files = dir.listFiles();

        for (File file : files) {
            if (file.isFile()) {
                size += file.length();
            }
        }

        return size;
    }
}

注意:缓存的目的是减少网络活动, 漫长的流程,并在您的应用中提供响应式用户界面。

参考:When to clear the cache dir in Android?