以编程方式清除android应用程序中的缓存

Ami*_*ith 6 performance android caching

我需要一项有关我的 android 应用程序中缓存内存的帮助。我正在设备中运行服务器(android)。我想以编程方式清除该应用程序的缓存。我在那台服务器上有数据库。基于该数据库,我的客户端操作正在进行中。所以我不希望它(数据库)受到影响。我只想清除缓存而不是清除数据。请帮我解决一下这个。

Mer*_*n E 6

在 Kotlin 上你只需调用

File(context.cacheDir.path).deleteRecursively()
Run Code Online (Sandbox Code Playgroud)


Aow*_*aza 5

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) {
         e.printStackTrace();
      }
   }

   public static void trimCache(Context context) {
      try {
         File dir = context.getCacheDir();
         deleteDir(dir);
      } catch (Exception e) {
         e.printStackTrace();
      }
   }

   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 {
         return false;
      }
   }
Run Code Online (Sandbox Code Playgroud)