以编程方式清除应用程序的数据

时间:2011-05-26 05:32:51

标签: android

我想以编程方式清除应用程序的数据。

应用程序的数据可能包含数据库,共享首选项,内部外部文件或在应用程序中创建的任何其他文件。

我知道我们可以通过以下方式清除移动设备中的数据:

  

设置>应用 - > ManageApplications-> My_application->清除   数据

但我需要通过Android程序执行上述操作吗?

7 个答案:

答案 0 :(得分:97)

我只是将the link ihrupin posted中的教程放在这篇文章中。

package com.hrupin.cleaner;

import java.io.File;

import android.app.Application;
import android.util.Log;

public class MyApplication extends Application {

    private static MyApplication instance;

    @Override
    public void onCreate() {
        super.onCreate();
        instance = this;
    }

    public static MyApplication getInstance() {
        return instance;
    }

    public void clearApplicationData() {
        File cacheDirectory = getCacheDir();
        File applicationDirectory = new File(cacheDirectory.getParent());
        if (applicationDirectory.exists()) {
            String[] fileNames = applicationDirectory.list();
            for (String fileName : fileNames) {
                if (!fileName.equals("lib")) {
                    deleteFile(new File(applicationDirectory, fileName));
                }
            }
        }
    }

    public static boolean deleteFile(File file) {
        boolean deletedAll = true;
        if (file != null) {
            if (file.isDirectory()) {
                String[] children = file.list();
                for (int i = 0; i < children.length; i++) {
                    deletedAll = deleteFile(new File(file, children[i])) && deletedAll;
                }
            } else {
                deletedAll = file.delete();
            }
        }

        return deletedAll;
    }
}

因此,如果您想要一个按钮来执行此操作,则需要调用MyApplication.getInstance()。 clearClicklicationData()来自onClickListener

<强>更新 您的SharedPreferences实例可能会保留您的数据并在删除后重新创建首选项文件。所以你想要得到你的SharedPreferences对象和

prefs.edit().clear().commit();

<强>更新

如果您还没有将android:name="your.package.MyApplication"添加到AndroidManifest.xml中的application tag,则需要添加MyApplication.getInstance()。否则,null会返回{{1}},从而导致 NullPointerException

答案 1 :(得分:87)

API 19(KitKat)中引入了一个新的API: ActivityManager.clearApplicationUserData()

我强烈建议在新应用程序中使用它:

import android.os.Build.*;
if (VERSION_CODES.KITKAT <= VERSION.SDK_INT) {
    ((ActivityManager)context.getSystemService(ACTIVITY_SERVICE))
            .clearApplicationUserData(); // note: it has a return value!
} else {
    // use old hacky way, which can be removed
    // once minSdkVersion goes above 19 in a few years.
}

如果你不想要hacky方式,你也可以隐藏UI上的按钮,这样就无法在旧手机上使用该功能。

使用android:manageSpaceActivity的任何人都必须了解此方法。


每当我使用此功能时,我都会使用manageSpaceActivityandroid:process=":manager"。在那里,我手动杀死我的应用程序的任何其他进程。这允许我让UI保持运行并让用户决定下一步该去哪里。

private static void killProcessesAround(Activity activity) throws NameNotFoundException {
    ActivityManager am = (ActivityManager)activity.getSystemService(Context.ACTIVITY_SERVICE);
    String myProcessPrefix = activity.getApplicationInfo().processName;
    String myProcessName = activity.getPackageManager().getActivityInfo(activity.getComponentName(), 0).processName;
    for (ActivityManager.RunningAppProcessInfo proc : am.getRunningAppProcesses()) {
        if (proc.processName.startsWith(myProcessPrefix) && !proc.processName.equals(myProcessName)) {
            android.os.Process.killProcess(proc.pid);
        }
    }
}

答案 2 :(得分:10)

最简单的方法是

private void deleteAppData() {
     try {
    // clearing app data
    String packageName = getApplicationContext().getPackageName();
    Runtime runtime = Runtime.getRuntime();
    runtime.exec("pm clear "+packageName);

} catch (Exception e) {
    e.printStackTrace();
} }

这将清除数据并从内存中删除您的应用。它等同于明确的数据选项 设置 - &gt;应用程序管理器 - &gt;你的应用 - &gt;清除数据

答案 3 :(得分:9)

合并来自2个答案的代码:

以下是基于结果的综合答案

private void clearAppData() {
    try {
        // clearing app data
        if (Build.VERSION_CODES.KITKAT <= Build.VERSION.SDK_INT) {
            ((ActivityManager)getSystemService(ACTIVITY_SERVICE)).clearApplicationUserData(); // note: it has a return value!
        } else {
            String packageName = getApplicationContext().getPackageName();
            Runtime runtime = Runtime.getRuntime();
            runtime.exec("pm clear "+packageName);
        }

    } catch (Exception e) {
        e.printStackTrace();
    } 
}

答案 4 :(得分:1)

我到处使用的是什么:

 Runtime.getRuntime().exec("pm clear me.myapp");
  

执行上面的代码会关闭应用程序并删除所有数据库和共享首选项

答案 5 :(得分:0)

试试这个代码

private void clearAppData() {
    try {
        if (Build.VERSION_CODES.KITKAT <= Build.VERSION.SDK_INT) {
            ((ActivityManager)getSystemService(ACTIVITY_SERVICE)).clearApplicationUserData();
        } else {
            Runtime.getRuntime().exec("pm clear " + getApplicationContext().getPackageName());
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

答案 6 :(得分:-1)

如果你想要一个不那么冗长的黑客攻击:

void deleteDirectory(String path) {
  Runtime.getRuntime().exec(String.format("rm -rf %s", path));
}