我想將我的應用程序的logcat值,特別是LOG.I保存在SD卡中。 我已經使用以下代碼來獲取所有日誌值,但無法過濾它只獲得特定的log.i值。請建議如何做?如何只從應用程序的logcat獲取log.i值?
try {
File filename = new File(Environment.getExternalStorageDirectory()+"/gphoto4.html");
filename.createNewFile();
String cmd = "logcat -d -f "+filename.getAbsolutePath();
Runtime.getRuntime().exec(cmd);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
確定我VILL提高。如果你知道如何獲取日誌值。 Plz告訴。 – suprita
@imran khan:感謝回覆 – suprita
@android_pb:你的問題得到解決或沒有? –