【问题标题】:Delete data in the browser在浏览器中删除数据
【发布时间】:2011-11-07 09:24:31
【问题描述】:

我可以从应用程序信息中删除数据,您想在应用程序终止时永久删除数据。但是,无法完全删除数据。你知道这个来源的问题是什么吗?

Context context = getBaseContext();
WebView webview = new WebView(context);

deleteCacheDir(this);
clearApplicationCache(null);

CookieManager.getInstance().removeAllCookie();

String[] fileList = this.fileList();
    for(String file: fileList) { 
    this.deleteFile(file);
}
WebViewDatabase.getInstance(this).clearUsernamePassword();
WebViewDatabase.getInstance(this).clearHttpAuthUsernamePassword();

webview.clearSslPreferences();
webview.clearView();

webview.clearFormData();
webview.clearHistory();
webview.clearCache(true);
webview.clearMatches();

context.deleteDatabase("/data/data/android.Packege/databaseswebview.db"
context.deleteDatabase("/data/data/android.Packege/databases/webviewCache.db");

webview.freeMemory();

android.os.Process.killProcess(android.os.Process.myPid());
return true;
}
return true;
}
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){}
}
void deleteCacheDir(Context context) {
    Runtime localRuntime = Runtime.getRuntime();

    String cachePath = context.getCacheDir().getPath();
    String cmd = "rm -R " + cachePath;
    try {
        localRuntime.exec(cmd);
    } catch (IOException e) {
        e.printStackTrace();
        }
    }

【问题讨论】:

    标签: android webview android-webview


    【解决方案1】:

    会不会是您输入了android.Packege 而不是android.Package

    【讨论】:

    • Oh sorry.Misspelled.When the remaining data is still android.Package.
    • 是的,并且正在运行。我可能会但仍然保持在或 KB。从数据中取出,不是信息,要自动0KB。
    • 程序虽然在移动,但有时会被数据留下来。
    猜你喜欢
    • 2019-08-10
    • 1970-01-01
    • 2012-08-27
    • 2010-11-19
    • 2011-02-18
    • 1970-01-01
    • 2013-07-22
    • 1970-01-01
    • 2011-12-27
    相关资源
    最近更新 更多