我需要从Android中的调制解调器无线电日志中捕获一些信息,但我不知道如何捕获它。我搜索了很多,但没有找到。由于我需要有关android中baseband
的一些信息,我发现必须捕获调制解调器日志。
提前致谢。
修改
我发现Read logcat programmatically within application用于在应用程序中捕获logcat
个日志
但是因为它是adb log adb logcat -b radio
我不知道如何捕获ADB登录应用程序。正如我在一条评论中所看到的,我怀疑是否有可能。
由于
答案 0 :(得分:1)
尝试这样的事情:
try {
Runtime rt = Runtime.getRuntime();
//here you can add your params
String[] commands = {"logcat"};
Process proc = rt.exec(commands);
BufferedReader stdInput = new BufferedReader(new
InputStreamReader(proc.getInputStream()));
BufferedReader stdError = new BufferedReader(new
InputStreamReader(proc.getErrorStream()));
String s;
while ((s = stdInput.readLine()) != null) {
//here is your logcat
Log.i("logcat", s);
}
while ((s = stdError.readLine()) != null) {
Log.e("logcat", s);
}
} catch (IOException e) {
e.printStackTrace();
}
请记住,您可能需要root来读取logcat。
UPD:工作示例 - https://github.com/sssemil/SampleLogcatApp
答案 1 :(得分:0)
adb设备连接后,请在终端或控制台上使用以下命令。
adb logcat -b广播