以编程方式清除Android应用程序中的caching

什么是以编程方式清除android应用程序中的caching正确的方法。 我已经使用下面的代码,但它不适合我的工作

@Override protected void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); clearApplicationData(); } 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("EEEEEERRRRRRROOOOOOORRRR", "**************** File /data/data/APP_PACKAGE/" + s + " DELETED *******************"); } } } } public static boolean deleteDir(File dir) { if (dir != null && 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(); } 

从我的android手机的图像

如果你正在寻找你自己的应用程序的删除caching,然后简单地删除您的caching目录,完成所有!

 public static void deleteCache(Context context) { try { File dir = context.getCacheDir(); deleteDir(dir); } catch (Exception e) {} } public static boolean deleteDir(File dir) { if (dir != null && 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(); } else if(dir!= null && dir.isFile()) { return dir.delete(); } else { return false; } } 

而且您可能需要以下权限才能添加清单文件以删除其他应用程序的caching

 <uses-permission android:name="android.permission.CLEAR_APP_CACHE"/> 

我认为你应该在super.OnDestroy()之前放置clearApplicationData()。

closures时,您的应用程序无法处理任何方法。

dhams的答案是正确的(经过多次编辑之后),但是由于代码的许多编辑显示,要自己编写正确和健壮的代码来删除一个目录(使用子目录)是很困难的。 所以我强烈build议使用Apache Commons IO ,或者其他一些为你做这个的API:

 import org.apache.commons.io.FileUtils; ... // Delete local cache dir (ignoring any errors): FileUtils.deleteQuietly(context.getCacheDir()); 

PS:如果使用的话,还要删除context.getExternalCacheDir()返回的目录。

为了能够使用Apache Commons IO,将其添加到您的build.gradle文件的dependencies部分:

 compile 'commons-io:commons-io:2.4' 

我不知道,但我也播种这个代码。 这鳕鱼将工作更快,在我的脑海里,它也很简单。 只是让你的应用程序caching目录,并删除目录中的所有文件

 public boolean clearCache() { try { File[] files = getBaseContext().getCacheDir().listFiles(); for (File file : files) { // delete returns boolean we can use if (!file.delete()) { return false; } } // if for completes all return true; } catch (Exception e) {} // try stops clearing cache return false; }