3

Android で、1 つのクラスからすべての Log.d を収集し、追加し続けて SDCard に保存することは可能ですか?

例えば ​​:

Class Android {

    private final static String TAG = "hello";

    public void abcd(){
    Log.d(TAG, "it went into abcd method");
    }

    public void efgh(){
    Log.d(TAG, "it went into efgh method");
    }

       /*Here collect all above LOGS and write to file in SDCard*/

}
4

4 に答える 4

3

コマンドですべてのログを取得できますlogcat。次のようなものを試すことができます:

public static void printLog(Context context){
    String filename = context.getExternalFilesDir(null).getPath() + File.separator + "my_app.log";
    String command = "logcat -d *:V";

    Log.d(TAG, "command: " + command);

    try{
        Process process = Runtime.getRuntime().exec(command);

        BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
        String line = null;
        try{
            File file = new File(filename);
            file.createNewFile();
            FileWriter writer = new FileWriter(file);
            while((line = in.readLine()) != null){
                writer.write(line + "\n");
            }
            writer.flush();
            writer.close();
        }
        catch(IOException e){
            e.printStackTrace();
        }
    }
    catch(IOException e){
        e.printStackTrace();
    }
}

詳細については、logcatこちらをご覧ください: http://developer.android.com/tools/help/logcat.html

于 2013-07-12T07:26:06.590 に答える
0

Log クラスをオーバーライドして、自分で行うことができます。しかし、それはあなたの目的にとって本当に必要ですか?

于 2013-07-12T07:27:30.770 に答える
0

いいえ、Log.* メソッドはコンソールに書き込みますが、Logger http://developer.android.com/reference/java/util/logging/Logger.htmlと FileHandlerを使用できます

于 2013-07-12T07:34:01.250 に答える