有什么办法可以重置所有应用程序数据吗?我的意思是,数据库,缓存,应用程序文件夹等。我想在调用应用程序onDestroy()
时这样做。我正在寻找一个全局解决方案 - 我不知道在数据库中创建表,我只知道包名。
答案 0 :(得分: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();
}
礼貌hrupin。有关详情,请点击here