반응형
Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

Do Something IT

[안드로이드] 캐쉬 삭제 본문

Android

[안드로이드] 캐쉬 삭제

아낙시만더 2011. 1. 11. 09:53
반응형


 private void clearApplicationCache(java.io.File dir) { // 캐쉬 삭제 메서드
  if (dir == null)
   dir = getCacheDir();
  else
   ;
  if (dir == null)
   return;
  else
   ;
  java.io.File[] children = dir.listFiles();
  try {
   for (int i = 0; i < children.length; i++)
    if (children[i].isDirectory())
     clearApplicationCache(children[i]);
    else
     children[i].delete();
  } catch (Exception e) {
  }
 }

 public void onDestroy() {
  super.onDestroy();
  clearApplicationCache(null); // 캐쉬삭제
 }

반응형
Comments