以编程方式清除用户自己的应用数据

时间:2011-02-07 22:34:52

标签: android

我正在开发一个应用程序,我想让用户能够设置,如果他们在尝试进入应用程序后失败登录,它将自动删除所有数据,包括首选项和数据库。

是否有一种简单的方法可以执行此操作,还是必须编写代码来手动重置应用程序使用的所有内容?

2 个答案:

答案 0 :(得分:9)

试试这段代码。

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

答案 1 :(得分:7)

  

是否有一种简单的方法可以执行此操作,或者是否必须编写代码来手动重置应用程序使用的所有内容。

您必须编写代码来手动重置应用程序使用的所有内容。这应该是删除少量文件的问题。在尝试删除数据库之前,请确保您的数据库已关闭。