android里面的log输出以往都是在eclipse里面看,如果通过USB连接电脑,可以输出到PC上。

重定向android log

try {//adb logcat -v threadtime  > logcat.txtString fileName = "logcat_" + System.currentTimeMillis() + ".txt";File outputFile = new File(Environment.getExternalStorageDirectory(), fileName);@SuppressWarnings("unused")Process process = Runtime.getRuntime().exec("logcat -v threadtime -f" + outputFile.getAbsolutePath());} catch (IOException e) {}

bat:

  adb logcat -v threadtime > logcat.txt

参考文档:

Reading and Writing Logs
http://developer.android.com/tools/debugging/debugging-log.html

Android Debug Bridge, Part 1: How to Capture Logcat Files Using ADB
http://university.utest.com/android-debug-bridge-part-1-how-to-capture-logcat-files-using-adb/

write to file on sd card
http://stackoverflow.com/questions/6175002/write-android-logcat-data-to-a-file

更多相关文章

  1. android 解析 xml 文档的三种方法
  2. Android基础开发文档汇总
  3. Android DOC文档分析——Dialog
  4. 开始学习、翻译android文档
  5. js 判断当前操作系统 ios, android, 电脑端
  6. Android Fresco图片处理库用法API英文原文文档2-1(Facebook开源An
  7. Android官方技术文档翻译—— Eclilpse项目迁移
  8. 【Android Developers Training】 53. 打印HTML文档
  9. Android Kernel Porting 的简单总结文档

随机推荐

  1. FFmpeg在Android上的移植优化步骤 .
  2. Android——腾讯X5使用记录
  3. Android(安卓)的平台碎片化问题
  4. 两种特殊TabHost实现
  5. 【Android】在Android上使用OrmLite数据
  6. Android的Window类 [转]
  7. android系统体系结构
  8. Android之父深入解析Android
  9. Android(安卓)创建与解析XML(一)—— 概述
  10. android获取设备唯一标识完美解决方案