我想从logcat中读取最后n行.这有用吗?:
Process process = Runtime.getRuntime().exec("logcat -t -500");BufferedReader bufferedReader = new BufferedReader(new inputStreamReader(process.getinputStream()));...
-t number
使logcat仅从数字和向前指示的位置打印条目.正数表示该位置相对于日志文件的开头,负数表示该位置相对于日志文件的结尾.
谢谢
解决方法:
尝试这样的事情:
String[] command = { "logcat", "-t", "500" };Process p = Runtime.getRuntime().exec(command);
有关完整示例,请检查Log Collector,它肯定有效:
http://code.google.com/p/android-log-collector/source/browse/trunk/android-log-collector/src/com/xtralogic/android/logcollector/SendLogActivity.java
解释为什么这可以从logcat man:
-t <count> print only the most recent <count> lines (implIEs -d) -t '<time>' print most recent lines since specifIEd time (implIEs -d) -T <count> print only the most recent <count> lines (does not imply -d) -T '<time>' print most recent lines since specifIEd time (not imply -d) count is pure numerical, time is 'MM-DD hh:mm:ss.mmm'
总结 以上是内存溢出为你收集整理的android – 从logcat读取最后N行?全部内容,希望文章能够帮你解决android – 从logcat读取最后N行?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)