Clear android application user data

后端 未结 7 686
走了就别回头了
走了就别回头了 2020-12-12 11:20

Using adb shell to clear application data

adb shell pm clear com.android.browser

But when executing that command from appl

7条回答
  •  攒了一身酷
    2020-12-12 12:01

    To clear Application Data Please Try this way.

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

提交回复
热议问题