9

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

4

3 回答 3

11

我找到了这个:

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

}

它可能对您有帮助。

于 2013-08-13T04:52:35.593 回答
4

这是一个有趣的场景。在 Manifest.Permission文档中

公共静态最终字符串 CLEAR_APP_CACHE

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

常量值:“android.permission.CLEAR_APP_CACHE”

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

编辑:这个谷歌讨论可能很有趣。Dianne Hackborn 明确表示,SDK 中不应存在上述权限,因为使用它的 API 不存在。

于 2013-08-13T04:49:15.650 回答
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();
}
于 2013-08-13T04:49:12.417 回答