2
我已經實現了一個應用程序並將其發送給我的客戶。在我的應用程序中,我正在將logcat信息寫入一個txt文件。當我的custmer遇到問題時,他將該logcat信息文件發送爲txt.But txt文件太可怕了,從該txt文件中找到問題。在這裏我想加載該文本信息到logacat android tool.how我可以加載txt文件到logcat工具。 我已經implemneted我的應用程序如下如何將.txt文件數據加載到logcat android工具中?
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的機器人工具,它是在蝕。 請任何機構幫我.....
可以你給一個想法呢? –
我的意思是文本文件解析是verry dificault.is有任何方法可以輕鬆解析? –