5

我想获得完整的系统日志。目前,我正在使用下面的代码来获取系统日志

try {
        final Process process = Runtime.getRuntime().exec("logcat -d -v threadtime *:I");
        final BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(
                process.getInputStream()));
        String line;
        while ((line = bufferedReader.readLine()) != null) {
            lineList.add(line);
        }
    } catch (final IOException e) {
        Log.e(e.toString());
    }

我可以使用上面的代码成功获取系统日志。它只提供最后 30 分钟的日志。但是,我想从我的应用程序启动中获得完整的系统日志。是否可以将系统日志写入我们的私有文件?

4

1 回答 1

1

要连续写入文件,请尝试以下操作:

... exec( "logcat -f cachedirectory/logfile.txt -v threadtime" );

请参阅http://developer.android.com/tools/help/logcat.html中的 -f 选项。

于 2014-01-08T07:14:51.233 回答