如何在 txt 文件中写入 android 中的 Log Cat,但我不想要所有日志,而只想要我的应用程序的日志。我有这段代码,但写了一切
String fileName = "logcat.txt";
File root = Environment.getExternalStorageDirectory();
System.out.println("CONTEXT : " + root);
File outputFile = new File(root.getAbsolutePath(), fileName);
System.out.println("FILE : " + outputFile);
@SuppressWarnings("unused")
Process process;
try {
process = Runtime.getRuntime().exec("logcat -f "+ outputFile);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
如何让它只写我的应用程序!该应用程序的名称是 nick.app
谢谢