Android将应用log信息保存文件

相信大家在做应用调试的时候,不可能时时通过USB线连着电脑去查看log信息,所以,将应用的log信息保存到手机本地就很有必要了,有助我们从这些log信息中提取有用的部分,以解决一些bug,下面我把网上分享的代码中作了一些精简,作为开发者使用,个人觉得没必要通过用户上传给我们,用户上传的不需要这么庞大的log信息,仅仅那部分崩溃的log信息即可,可参考我的另外一篇blog:http://blog.csdn.net/weidi1989/article/details/7927273

好了,废话不多说,直接分享封装好的log信息类:LogcatHelper

  1. package com.way.util;
  2. import java.io.BufferedReader;
  3. import java.io.File;
  4. import java.io.FileNotFoundException;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. import java.io.InputStreamReader;
  8. import android.content.Context;
  9. import android.os.Environment;
  10. /**
  11. * log日志统计保存
  12. *
  13. * @author way
  14. *
  15. */
  16. public class LogcatHelper {
  17. private static LogcatHelper INSTANCE = null;
  18. private static String PATH_LOGCAT;
  19. private LogDumper mLogDumper = null;
  20. private int mPId;
  21. /**
  22. *
  23. * 初始化目录
  24. *
  25. * */
  26. public void init(Context context) {
  27. if (Environment.getExternalStorageState().equals(
  28. Environment.MEDIA_MOUNTED)) {// 优先保存到SD卡中
  29. PATH_LOGCAT = Environment.getExternalStorageDirectory()
  30. .getAbsolutePath() + File.separator + "miniGPS";
  31. } else {// 如果SD卡不存在,就保存到本应用的目录下
  32. PATH_LOGCAT = context.getFilesDir().getAbsolutePath()
  33. + File.separator + "miniGPS";
  34. }
  35. File file = new File(PATH_LOGCAT);
  36. if (!file.exists()) {
  37. file.mkdirs();
  38. }
  39. }
  40. public static LogcatHelper getInstance(Context context) {
  41. if (INSTANCE == null) {
  42. INSTANCE = new LogcatHelper(context);
  43. }
  44. return INSTANCE;
  45. }
  46. private LogcatHelper(Context context) {
  47. init(context);
  48. mPId = android.os.Process.myPid();
  49. }
  50. public void start() {
  51. if (mLogDumper == null)
  52. mLogDumper = new LogDumper(String.valueOf(mPId), PATH_LOGCAT);
  53. mLogDumper.start();
  54. }
  55. public void stop() {
  56. if (mLogDumper != null) {
  57. mLogDumper.stopLogs();
  58. mLogDumper = null;
  59. }
  60. }
  61. private class LogDumper extends Thread {
  62. private Process logcatProc;
  63. private BufferedReader mReader = null;
  64. private boolean mRunning = true;
  65. String cmds = null;
  66. private String mPID;
  67. private FileOutputStream out = null;
  68. public LogDumper(String pid, String dir) {
  69. mPID = pid;
  70. try {
  71. out = new FileOutputStream(new File(dir, "GPS-"
  72. + MyDate.getFileName() + ".log"));
  73. } catch (FileNotFoundException e) {
  74. // TODO Auto-generated catch block
  75. e.printStackTrace();
  76. }
  77. /**
  78. *
  79. * 日志等级:*:v , *:d , *:w , *:e , *:f , *:s
  80. *
  81. * 显示当前mPID程序的 E和W等级的日志.
  82. *
  83. * */
  84. // cmds = "logcat *:e *:w | grep \"(" + mPID + ")\"";
  85. // cmds = "logcat  | grep \"(" + mPID + ")\"";//打印所有日志信息
  86. // cmds = "logcat -s way";//打印标签过滤信息
  87. cmds = "logcat *:e *:i | grep \"(" + mPID + ")\"";
  88. }
  89. public void stopLogs() {
  90. mRunning = false;
  91. }
  92. @Override
  93. public void run() {
  94. try {
  95. logcatProc = Runtime.getRuntime().exec(cmds);
  96. mReader = new BufferedReader(new InputStreamReader(
  97. logcatProc.getInputStream()), 1024);
  98. String line = null;
  99. while (mRunning && (line = mReader.readLine()) != null) {
  100. if (!mRunning) {
  101. break;
  102. }
  103. if (line.length() == 0) {
  104. continue;
  105. }
  106. if (out != null && line.contains(mPID)) {
  107. out.write((MyDate.getDateEN() + "  " + line + "\n")
  108. .getBytes());
  109. }
  110. }
  111. } catch (IOException e) {
  112. e.printStackTrace();
  113. } finally {
  114. if (logcatProc != null) {
  115. logcatProc.destroy();
  116. logcatProc = null;
  117. }
  118. if (mReader != null) {
  119. try {
  120. mReader.close();
  121. mReader = null;
  122. } catch (IOException e) {
  123. e.printStackTrace();
  124. }
  125. }
  126. if (out != null) {
  127. try {
  128. out.close();
  129. } catch (IOException e) {
  130. e.printStackTrace();
  131. }
  132. out = null;
  133. }
  134. }
  135. }
  136. }
  137. }

记得加上权限:

  1. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  2. <uses-permission android:name="android.permission.READ_LOGS" />

另外把那个时间的工具类也分享一下:

  1. package com.way.util;
  2. import java.text.SimpleDateFormat;
  3. import java.util.Date;
  4. public class MyDate {
  5. public static String getFileName() {
  6. SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
  7. String date = format.format(new Date(System.currentTimeMillis()));
  8. return date;// 2012年10月03日 23:41:31
  9. }
  10. public static String getDateEN() {
  11. SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  12. String date1 = format1.format(new Date(System.currentTimeMillis()));
  13. return date1;// 2012-10-03 23:41:31
  14. }
  15. }

OK,所有事情做完之后,在我们的应用中start一下就OK了,使用完之后,记得调用一下stop:

    1. public class GPSApplication extends Application {
    2. @Override
    3. public void onCreate() {
    4. // TODO Auto-generated method stub
    5. LogcatHelper.getInstance(this).start();
    6. }
    7. }

原文:http://blog.csdn.net/way_ping_li/article/details/8487866

上一篇:LTP随笔——本地调用ltp之ltp4j


下一篇:unity 动态更新模型透明度