web-dev-qa-db-ja.com

Androidアプリケーションユーザーデータを消去します

adb Shellを使用してアプリケーションデータを消去する

adb Shell pm clear com.Android.browser

しかし、アプリケーションからそのコマンドを実行するとき

String deleteCmd = "pm clear com.Android.browser";      
        Runtime runtime = Runtime.getRuntime();
        try {
            runtime.exec(deleteCmd);
        } catch (IOException e) {
            e.printStackTrace();                
        }

問題:

私は次の許可を与えましたが、ユーザーデータがクリアされず、例外も発生しません。

<uses-permission Android:name="Android.permission.CLEAR_APP_USER_DATA"/>

質問:

adb Shellを使用してアプリケーションデータをクリアする方法

96
UdayaLakmal

Afaikブラウザアプリケーションのデータは、private_modeに保存されているため、他のアプリでは消去できません。したがって、このコマンドを実行しても、ルート化されたデバイスでのみ機能する可能性があります。それ以外の場合は、別のアプローチを試してください。

4
Thkru

このコマンドは私のために働いた:

adb Shell pm clear packageName
182
Manmohan Soni

コマンドpm clear com.Android.browserにはルート権限が必要です。
したがって、最初にsuを実行します。

サンプルコードは次のとおりです

private static final String CHARSET_NAME = "UTF-8";
String cmd = "pm clear com.Android.browser";

ProcessBuilder pb = new ProcessBuilder().redirectErrorStream(true).command("su");
Process p = pb.start();

// We must handle the result stream in another Thread first
StreamReader stdoutReader = new StreamReader(p.getInputStream(), CHARSET_NAME);
stdoutReader.start();

out = p.getOutputStream();
out.write((cmd + "\n").getBytes(CHARSET_NAME));
out.write(("exit" + "\n").getBytes(CHARSET_NAME));
out.flush();

p.waitFor();
String result = stdoutReader.getResult();

クラスStreamReader

import Java.io.IOException;
import Java.io.InputStream;
import Java.io.InputStreamReader;
import Java.util.concurrent.CountDownLatch;

class StreamReader extends Thread {
    private InputStream is;
    private StringBuffer mBuffer;
    private String mCharset;
    private CountDownLatch mCountDownLatch;

    StreamReader(InputStream is, String charset) {
        this.is = is;
        mCharset = charset;
        mBuffer = new StringBuffer("");
        mCountDownLatch = new CountDownLatch(1);
    }

    String getResult() {
        try {
            mCountDownLatch.await();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        return mBuffer.toString();
    }

    @Override
    public void run() {
        InputStreamReader isr = null;
        try {
            isr = new InputStreamReader(is, mCharset);
            int c = -1;
            while ((c = isr.read()) != -1) {
                mBuffer.append((char) c);
            }

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (isr != null)
                    isr.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            mCountDownLatch.countDown();
        }
    }
}
5
fantouch

アプリケーションデータをクリアするにはこの方法を試してください。

    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 &amp;&amp; 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();
}
3
Md Abdul Gafur

こんにちは、UdayaLakmal、

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

これを確認して、私に知らせてください...

here からコードをダウンロードできます

1
Strider