Android垃圾清理功能的初步

					//清理webkit的缓存
					File file = CacheManager.getCacheFileBaseDir();
				    if (file != null && file.exists() && file.isDirectory()) {
					    for (File item : file.listFiles()) {
					     item.delete();
					    }
					    file.delete();
					 }
					 //清理缓存,此方法只会清理cache文件夹中的File
					 File[] files = getCacheDir().listFiles();
		             for (File f : files)
		                   f.delete();
 
  

参考1:

清理软件缓存——eoe论坛

http://www.eoeandroid.com/forum.php?mod=viewthread&tid=84014&reltid=38039&pre_pos=3&ext=

这里分为一种需要root权限的,另外一种是不需要root的

参考2:

清理软件缓存——eoe论坛

http://www.eoeandroid.com/forum.php?mod=viewthread&tid=164193&reltid=38039&pre_pos=1&ext=

  public void clear(){
                File[] files = getCacheDir().listFiles();
                for (File f : files)
                        f.delete();
        }

这里会为APP生成一个对应的cache文件夹

参考3:

http://www.eoeandroid.com/thread-38039-1-1.html

参考4:

清理webView,即webkit的cache

http://jbg168.blog.163.com/blog/static/99683620115242389635/

你可能感兴趣的:(android)