Android:以编程方式清除缓存

时间:2013-08-13 04:41:40

标签: android

如何清除我的android手机程序中的每个应用程序的缓存? android中是否允许以编程方式清除缓存?如果允许,怎么样?我已经尝试研究它,但我找不到我需要的答案

3 个答案:

答案 0 :(得分:10)

我找到了这个:

import java.io.File;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;

public class HelloWorld extends Activity {

   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle *) {
      super.onCreate(*);
      setContentView(R.layout.main);
   }

   @Override
   protected void onStop(){
      super.onStop();
   }

   //Fires after the OnStop() state
   @Override
   protected void onDestroy() {
      super.onDestroy();
      try {
         trimCache(this);
      } catch (Exception e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
      }
   }

   public static void trimCache(Context context) {
      try {
         File dir = context.getCacheDir();
         if (dir != null && dir.isDirectory()) {
            deleteDir(dir);
         }
      } catch (Exception e) {
         // TODO: handle exception
      }
   }

   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;
            }
         }
      }

      // The directory is now empty so delete it
      return dir.delete();
   }

}

对您有所帮助。

答案 1 :(得分:4)

这是一个有趣的场景。 在Manifest.Permission documentation

  

public static final String CLEAR_APP_CACHE

     

在API级别1中添加允许应用程序清除所有缓存   在设备上安装了应用程序。

     

常量值:“android.permission.CLEAR_APP_CACHE”

因此,您可以获得清除所有应用程序缓存的权限。但我认为SDK中没有任何方法可以使用此权限。所以你可以持有许可,不做任何事情。谷歌奇怪。

编辑:This谷歌讨论可能会引起关注。 Dianne Hackborn明确表示上述权限不应出现在SDK中,因为使用它的API不存在。

答案 2 :(得分: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 && 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();
}