在android 中使用og4j

Android is a Linux-based operating system designed primarily for touchscreen mobile devices such as smartphones and tablet computers, developed by Google in conjunction with the Open Handset Alliance. The Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language. Apache log4j is a logging library for Java and an Apache Software Foundation Project and developed by a dedicated team of Committers of the Apache Software Foundation. Here we will explain how to integrate Log4J in Android based Java applications.

Step 1

Download Log4J library from http://logging.apache.org/log4j/1.2/download.html

Step 2

Configuring Log4J library the normal way - using XML configuration file - can't be used in Android based Java application as the configuration classes of Log4J use beans from the package "java.beans" (e.g. PropertyDescriptor). Not all classes of this package are supported in Android, so using Log4J directly in Android Java application will case exceptions like the following one to be thrown:

11-23 09:44:56.947: D/dalvikvm(1585): GC_FOR_MALLOC freed 3278 objects / 311568 bytes in 31ms
rejecting opcode 0x21 at 0x000a
rejected Lorg/apache/log4j/config/PropertySetter;.getPropertyDescriptor
(Ljava/lang/String;)Ljava/beans/PropertyDescriptor;
Verifier rejected class Lorg/apache/log4j/config/PropertySetter;
Exception Ljava/lang/VerifyError; thrown during Lorg/apache/log4j/LogManager;.
Shutting down VM
threadid=1: thread exiting with uncaught exception (group=0x400259f8)
FATAL EXCEPTION: main
java.lang.ExceptionInInitializerError
at org.slf4j.impl.Log4jLoggerFactory.getLogger(Log4jLoggerFactory.java:64)
at org.slf4j.LoggerFactory.getLogger(LoggerFactory.java:253)
at org.slf4j.LoggerFactory.getLogger(LoggerFactory.java:265)
...
Caused by: java.lang.VerifyError: org.apache.log4j.config.PropertySetter
at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:772)
at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:735)
at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:615)
at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:502)
at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:547)
at org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:483)
at org.apache.log4j.LogManager.(LogManager.java:127)
... 20 more

There is a project called android-logging-log4j, which provides a convenient way to configure the log4j system properly.

Download "Android Logging Log4J" library from http://code.google.com/p/android-logging-log4j/downloads/list

Step 3

Add Both libraries "log4j" and "android-logging-log4j" to your application libraries

Step 4

In order to log to a file on the external storage, the following permission needs to be placed in AndroidManifest.xml

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

Step 5

In your application Main class:

  1. packagecom.android.myapp;
  2. importjava.io.File;
  3. importorg.apache.log4j.Level;
  4. importorg.apache.log4j.Logger;
  5. importandroid.app.Application;
  6. importandroid.os.Environment;
  7. importde.mindpipe.android.logging.log4j.LogConfigurator;
  8. publicclass MyApplicationextends Application{
  9. @Override
  10. publicvoid onCreate(){
  11. super .onCreate();
  12. LogConfigurator logConfigurator=new LogConfigurator();
  13. logConfigurator.setFileName(Environment .getExternalStorageDirectory()
  14. +File .separator+"MyApp"+File .separator+"logs"
  15. +File .separator+"log4j.txt");
  16. logConfigurator.setRootLevel( Level.DEBUG);
  17. logConfigurator.setLevel("org.apache" , Level.ERROR);
  18. logConfigurator.setFilePattern("%d %-5p [%c{2}]-[%L] %m%n");
  19. logConfigurator.setMaxFileSize(1024*1024*5);
  20. logConfigurator.setImmediateFlush(true);
  21. logConfigurator.configure();
  22. Logger log= Logger.getLogger( MyApplication.class);
  23. log.info("My Application Created");
  24. }
  25. }

Now you will have log4j configured to log to Path: (Environment.getExternalStorageDirectory() + File.separator + "MyApp" + File.separator + "logs" + File.separator + "log4j.txt") with DEBUG level and ERROR lever for "org.apache" package with file pattern "%d %-5p [%c{2}]-[%L] %m%n" and other configuration parameters

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android 使用ContentProvider 添加联系人
  2. Android service生命周期详解
  3. 巧妙均分TabLayout tab
  4. Android source download for linux
  5. Android之封装好的异步网络请求框架
  6. Android 主界面 九宫格 超灵活的配置
  7. Android WiFi管理(WIFI_SERVICE)
  8. Android AApt错误
  9. android EditText控件设置只读
  10. Android进度条简单练习实例