我已经实现了一个应用程序并将其发送给我的客户。在我的应用程序中,我将logcat信息写入txt文件。当我的客户遇到问题时,他将该logcat信息文件作为txt发送。但是txt文件从那个txt文件中发现问题是太可怕了。我想把这个txt文件信息加载到logacat android tool.how我可以将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.But我想将logfile.txt内容加载到日食中的logcat android工具。 请任何身体帮助我.....
答案 0 :(得分:1)
我猜这不可能那样做。
作为一种可能的替代方案,您可以在文本文件中读取应用程序,然后逐行解析并使用该数据生成日志语句,然后将其转至LogCat ...