android 如何以编程方式仅捕获我在应用程序中的日志条目

android how to capture only my log entries in the application programmatically

我想单独获取我放在应用程序中的日志条目,并将其显示在可滚动的文本视图中。例如

Log.e(SAMPLE_ACTIVITY_TAG, "App started") 

我只需要那些错误日志,不需要其他不需要的日志。 logcat 命令行工具可以吗?我已经尝试了下面的代码,但我得到了完整的应用程序设备日志

 Process process = Runtime.getRuntime().exec("logcat -d");
        BufferedReader bufferedReader = new BufferedReader(
                new InputStreamReader(process.getInputStream()));

        StringBuilder log=new StringBuilder();
        String line = "";
        while ((line = bufferedReader.readLine()) != null) {
            log.append(line +"\n");
        }
        textView.setText(log.toString());
        textView.setMovementMethod(new ScrollingMovementMethod());

有什么建议

请使用以下给定命令创建进程对象:

logcat --pid=PID -d

您需要将 PID 替换为您的应用程序进程 ID。可以使用下面的代码行获取进程 ID

int pid = android.os.Process.myPid();

你的最终源码应该是这样的。请试一试

        int pid = android.os.Process.myPid();
        String command = "logcat --pid="+pid+" -d";
        Process process = Runtime.getRuntime().exec(command);
        BufferedReader bufferedReader = new BufferedReader(
                new InputStreamReader(process.getInputStream()));

        StringBuilder log=new StringBuilder();
        String line = "";
        while ((line = bufferedReader.readLine()) != null) {
            log.append(line +"\n");
        }
        textView.setText(log.toString());
        textView.setMovementMethod(new ScrollingMovementMethod());