我已经实现了一个应用程序并将其发送给我的客户。在我的应用程序中,我正在将 logcat 信息写入 txt 文件。当我的客户遇到问题时,他会将 logcat 信息文件作为 txt 发送。但是 txt 文件太可怕了从该 txt 文件中查找问题。在这里我想将该 txt 文件信息加载到 logacat android 工具。如何将 txt 文件加载到 logcat 工具。我已经实现了我的应用程序如下
FileUtilities ff = new FileUtilities(MainActivity.this);
try {
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);
}
ff.write("logfile.txt", log.toString());
} catch (IOException e) {
}
从上面的代码中,我能够将 logacat 信息写入 logfile.txt。但是我想将该 logfile.txt 内容加载到 eclipse 中的 logcat android 工具中。请任何人帮助我......