当前位置:   article > 正文

android日志框架_android 日志框架

android 日志框架

背景:在工业互联网项目开发过程中,当程序出现异常错误,由于条件限制,开发者往往无法及时获取到程序异常信息,于是需要将程序运行的状态以及内部参数完整的记录到本地,以便于开发调试。

为什么要写这篇博客:“com.orhanobut:logger”这个日志框架还是比较好用的,虽然网上有很多篇博客介绍了此框架如何打印日志并保存到本地磁盘,但打印出来的日志文件名称都是log_0.cvs、log_1.cvs ...... 等一些流水名称,在查找日志的时候非常非常的不方便,而且对于一个有强迫症的程序猿来说,不能自定义路径简直比SL我还要难受,于是在看了logger日志框架的源码后有了以下内容....

本文介绍

1.)如何将日志保存到本地,且自定义日志输出路径;

2.)日志文件夹按天分类,便于查找、清理;

3.)降低日志框架与项目的耦合;

4.)复制就能直接用;

1.引入依赖

在module中的build.gradle的dependencies代码块中引入以下依赖

  1. //日志工具
  2. implementation 'com.orhanobut:logger:2.2.0'

2.编写日志处理类

1.)日志接口:ChjLog;简单概括这个接口,使用接口方式,降低项目对日志框架的依赖耦合

  1. package com.chj.chjloghandle.logutil.inter;
  2. /***
  3. * 作者:chj233
  4. * 时间:2022/7/7
  5. * 描述:日志接口,需要更多方法可自行拓展...
  6. */
  7. public interface ChjLog {
  8. /**
  9. * 日志工具初始化
  10. * @param logPath 日志输出路径
  11. */
  12. void init(String logPath);
  13. /**
  14. * debug日志
  15. * @param msg
  16. */
  17. void d(String msg);
  18. /**
  19. * 错误日志
  20. * @param msg
  21. */
  22. void e(String msg);
  23. }

2.)日志处理类:ChjLogHandle ;简单概括这个类,设置日志打印策略,以及降低项目与日志框架的耦合

  1. package com.chj.chjloghandle.logutil.handle;
  2. import android.os.Handler;
  3. import android.os.HandlerThread;
  4. import com.chj.chjloghandle.logutil.inter.ChjLog;
  5. import com.orhanobut.logger.CsvFormatStrategy;
  6. import com.orhanobut.logger.DiskLogAdapter;
  7. import com.orhanobut.logger.FormatStrategy;
  8. import com.orhanobut.logger.LogStrategy;
  9. import com.orhanobut.logger.Logger;
  10. /**
  11. *
  12. * 功能描述:打印日志到本地
  13. * 使用场景:
  14. **/
  15. public class ChjLogHandle implements ChjLog {
  16. @Override
  17. public void init(String logPath) {
  18. HandlerThread ht = new HandlerThread("AndroidFileLogger." + logPath);
  19. ht.start();
  20. try {
  21. //单个文件最大限制5M 超过则创建新文件记录日志
  22. int maxFileSize = 5 * 1024 * 1024;
  23. //日志打印线程
  24. Handler cxHandle = new ChjCXWriteHandler(ht.getLooper(), logPath, maxFileSize);
  25. //创建缓存策略
  26. LogStrategy diskLogStrategy = new ChjCXDiskLogStrategy(cxHandle);
  27. //构建格式策略
  28. FormatStrategy strategy = CsvFormatStrategy.newBuilder().logStrategy(diskLogStrategy).build();
  29. //创建适配器
  30. DiskLogAdapter adapter = new DiskLogAdapter(strategy);
  31. //设置日志适配器
  32. Logger.addLogAdapter(adapter);
  33. } catch (Exception e) {
  34. e.printStackTrace();
  35. ht.quit();//退出
  36. }
  37. }
  38. /**
  39. * 此处仅实现两个
  40. * @param log
  41. */
  42. @Override
  43. public void d(String log) {
  44. Logger.d(log);
  45. }
  46. @Override
  47. public void e(String log) {
  48. Logger.e(log);
  49. }
  50. }

 2.)日志打印策略类:ChjCXDiskLogStrategy ;简单概括一下这个类,当日志框架触发log时,此类将日志内容传给 Handler 线程,由Handler 线程进行异步打印。

  1. package com.chj.chjloghandle.logutil.handle;
  2. import android.os.Handler;
  3. import com.orhanobut.logger.DiskLogStrategy;
  4. /**
  5. *
  6. * 功能描述:日志打印策略
  7. * 使用场景:需要打印日志并输出到本地文件夹中
  8. **/
  9. public class ChjCXDiskLogStrategy extends DiskLogStrategy {
  10. private Handler handler;
  11. public ChjCXDiskLogStrategy(Handler handler) {
  12. super(handler);
  13. this.handler = handler;
  14. }
  15. @Override
  16. public void log(int level, String tag, String message) {
  17. // do nothing on the calling thread, simply pass the tag/msg to the background thread
  18. handler.sendMessage(handler.obtainMessage(level, message));
  19. }
  20. }

3.) 日志打印线程:ChjCXWriteHandler ;当日志打印策略发送日志内容时,此类会接收到日志,并打印日志,也是打印日志的关键代码。

  1. package com.chj.chjloghandle.logutil.handle;
  2. import android.os.Handler;
  3. import android.os.Looper;
  4. import android.os.Message;
  5. import java.io.File;
  6. import java.io.FileWriter;
  7. import java.io.IOException;
  8. import java.text.SimpleDateFormat;
  9. import java.util.Date;
  10. /**
  11. * 功能描述:日志写入类
  12. **/
  13. public class ChjCXWriteHandler extends Handler {
  14. private String folder;//日志存储路径
  15. private int maxFileSize;//单个日志最大占用内存
  16. private final SimpleDateFormat sdfTime = new SimpleDateFormat("yyyy-MM-dd");
  17. public ChjCXWriteHandler(Looper looper, String folder, int maxFileSize) {
  18. super(looper);
  19. this.folder = folder;
  20. this.maxFileSize = maxFileSize;
  21. }
  22. @SuppressWarnings("checkstyle:emptyblock")
  23. @Override
  24. public void handleMessage(Message msg) {
  25. String content = (String) msg.obj;
  26. FileWriter fileWriter = null;
  27. File logFile = getLogFile(folder, "logs");
  28. try {
  29. fileWriter = new FileWriter(logFile, true);
  30. writeLog(fileWriter, content);
  31. fileWriter.flush();
  32. fileWriter.close();
  33. } catch (IOException e) {
  34. handleException(fileWriter);
  35. }
  36. }
  37. private void handleException(FileWriter fileWriter) {
  38. if (fileWriter == null) return;
  39. try {
  40. fileWriter.flush();
  41. fileWriter.close();
  42. } catch (IOException e1) {
  43. e1.printStackTrace();
  44. }
  45. }
  46. /**
  47. * This is always called on a single background thread.
  48. * Implementing classes must ONLY write to the fileWriter and nothing more.
  49. * The abstract class takes care of everything else including close the stream and catching IOException
  50. *
  51. * @param fileWriter an instance of FileWriter already initialised to the correct file
  52. */
  53. private void writeLog(FileWriter fileWriter, String content) throws IOException {
  54. fileWriter.append(content);
  55. }
  56. private File getLogFile(String folderName, String fileName) {
  57. folderName = folderName + "/" + getTime();
  58. fileName = fileName + "-" + getTime();
  59. File folder = new File(folderName);
  60. if (!folder.exists()) folder.mkdirs();
  61. int newFileCount = 0;
  62. File existingFile = null;
  63. File newFile = new File(folder, String.format("%s-%s.csv", fileName, newFileCount));
  64. while (newFile.exists()) {
  65. existingFile = newFile;
  66. newFileCount++;
  67. newFile = new File(folder, String.format("%s-%s.csv", fileName, newFileCount));
  68. }
  69. if (existingFile == null) return newFile;
  70. if (existingFile.length() >= maxFileSize) return newFile;
  71. return existingFile;
  72. }
  73. private String getTime() {
  74. return sdfTime.format(new Date());
  75. }
  76. }

4.)日志管理类: MyLog ;为了方便上次调用此处做控制反转。

  1. package com.chj.chjloghandle.logutil;
  2. import android.os.Environment;
  3. import android.util.Log;
  4. import com.chj.chjloghandle.logutil.handle.ChjLogHandle;
  5. import com.chj.chjloghandle.logutil.inter.ChjLog;
  6. /***
  7. * 作者:chj233
  8. * 时间:2022/7/7
  9. * 描述:
  10. */
  11. public class MyLog {
  12. //使用接口 避免耦合 后续若要更换日志打印框架 直接new 其它实现类即可
  13. private static ChjLog log = new ChjLogHandle();
  14. /**
  15. * 日志初始化
  16. */
  17. public static void init(){
  18. String path = Environment.getExternalStorageDirectory().getAbsolutePath() + "/ChjLogs";
  19. log.init(path);
  20. d("日志初始化成功!");
  21. }
  22. /**
  23. * debug日志
  24. * @param str
  25. */
  26. public static void d(String str){
  27. log.d(str);
  28. Log.d(MyLog.class.getName(),str);
  29. }
  30. /**
  31. * 错误日志
  32. * @param str
  33. */
  34. public static void e(String str){
  35. log.e(str);
  36. Log.e(MyLog.class.getName(),str);
  37. }
  38. }

3.记录日志

1.) 使用注意事项:注意使用之前一定要先授权,让APP可操作内存

  1. package com.chj.chjloghandle;
  2. import android.os.Bundle;
  3. import androidx.annotation.Nullable;
  4. import androidx.appcompat.app.AppCompatActivity;
  5. import com.chj.chjloghandle.logutil.MyLog;
  6. /***
  7. * 作者:chj233
  8. * 时间:2022/7/7
  9. * 描述:
  10. */
  11. public class MainActivity extends AppCompatActivity {
  12. @Override
  13. protected void onCreate(@Nullable Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. //注意 使用之前 需要用户允许操作SD卡权限
  16. MyLog.init();//日志初始化 推荐在Application的onCreate中初始化
  17. setContentView(R.layout.activity_main);
  18. findViewById(R.id.test).setOnClickListener((view) -> {//萌新友好提示 java8的写法
  19. MyLog.d("用户点击类按钮.");
  20. });
  21. findViewById(R.id.test1).setOnClickListener((view) -> {
  22. new Thread(() -> {// 萌新友好提示 java8的写法
  23. for (int i = 0; i < 10; i++){
  24. MyLog.d("线程循环...." + i);
  25. }
  26. }).start();
  27. });
  28. }
  29. }

4.总结

此日志框架使用 Handler 机制,保证多线程下日志输出顺序不会乱。demo使用策略设计模式,降低代码的耦合程度。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/609805
推荐阅读
相关标签
  

闽ICP备14008679号