3

我有一个通用模块,我正在使用常规 Java (PC) 开发,但我也想在 Android 模块中使用它。

如何在 PC 模块中记录消息并在 Android 日志中查看该消息?

4

2 回答 2

3

您可以使用 SLF4J API(它是日志框架的轻量级外观)。我认为这是为 Java 开发库的最佳方式。

您可以在此处阅读有关 SLF4J 和 log4j 之间差异的更多信息。

例如,您可以在公共模块中使用以下代码:

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Bar {

  private static final Logger logger = LoggerFactory.getLogger(Bar.class);

  public void foo(int value) {
    logger.info("entered Bar::foo value={}", value);
  }

}

之后,您可以将此代码与 SLF4J 实现之一一起使用:

  • 对于非 Android 模块:
    • 你可以使用LOGBack
    • 或适配器之一:Log4jLoggerAdapter、JDK14LoggerAdapter、SimpleLogger 等。
  • 对于 Android 模块:
    • 最简单的实现Android Logger之一。
    • 如果您需要一些复杂的日志记录并且您的应用程序大小不受限制,logback-android是您的选择。
于 2013-07-30T10:24:59.263 回答
1

使用apache.log4j.Logger易于用于 Log 的 lib

例子

import org.apache.log4j.Logger;
    public class LoggerUtils {

        private static Logger log = null;

        // Static initializer loads only once when the class loads into memory
        static {
            System.out.println("Inside LoggerUtils static block");
            log = Logger.getLogger(LoggerUtils.class);
            System.out.println("LoggerUtils Class Name == "
                    + LoggerUtils.log.getClass().getName());
        }// end of static block

        /**
         * Default no argument constructor
         */
        public LoggerUtils() {
        }

        /**
         * @param String, debug statement to log.
         */
        public static void debug(String logString) {
            log.debug(logString);
        }

        /**
         * @param String, info statement to log.
         */
        public static void info(String logString) {
            log.info(logString);
        }

        /**
         * @param String, error statement to log.
         */
        public static void error(String logString) {
            log.error(logString);
        }

        /**
         * @param String, warning statement to log.
         */
        public static void warn(String logString) {
            log.warn(logString);
        }



        /**
         * @param logString, error message to log.
         * @param e, error object.
         */
        public static void error(String logString, Exception e) {

            error(logString);

            if (e != null) {

                StackTraceElement[] elements = null;
                elements = e.getStackTrace();

                if (elements != null) {
                    StringBuffer strBuffer = new StringBuffer("");
                    for (int i = 0; i < elements.length; i++) {
                        strBuffer.append(elements[i]).append("\n");
                    }

                    error("Stack Trace :: \n" + strBuffer.toString());
                    strBuffer = null;
                }

                elements = null;

            }// end of if(e != null)

        }

        /**
         * @param logString, error message to log.
         * @param messages, messageObject to log.
         */
        public static void error(String logString, Object[] messages) {
            error(logString);

            if (messages != null) {

                StringBuffer strBuffer = new StringBuffer("");
                for (int i = 0; i < messages.length; i++) {
                    strBuffer.append(messages[i]).append("\n");
                }
                error(strBuffer.toString());
                strBuffer = null;

            }// end of if(messages != null)

        }

        /**
         * @param logString, fatal message to log.
         */
        public static void fatal(String logString) {
            log.fatal(logString);
        }

    }// end of class - LoggerUtils

如何在代码中使用

LoggerUtils.info(this.getClass().getName()+ ".name---> Entered");
LoggerUtils.error("Exception : "+ e);
于 2013-06-05T07:39:52.227 回答