android的Log輸出(例項)

查志強發表於2014-07-28

【原文:http://blog.csdn.net/alley_zhang/article/details/5713894

一個android應用程式執行後 並不會在 ide的控制檯內輸出任何資訊. 不能在控制檯輸出。但是android提供的Log類。

 

在程式中輸出日誌, 使用 android.util.Log 類. 
該類提供了若干靜態方法

Log.v(String tag, String msg); 
Log.d(String tag, String msg); 
Log.i(String tag, String msg); 
Log.w(String tag, String msg); 
Log.e(String tag, String msg);

分別對應 Verbose, Debug, Info, Warning,Error.

tag是一個標識,可以是任意字串,通常可以使用類名+方法名, 主要是用來在檢視日誌時提供一個篩選條件.

 

 

如果要後檢視日誌 請使用

adb logcat

關於adb的更多資訊請檢視官方網站.

當執行 adb logcat 後會以tail方式實時顯示出所有的日誌資訊.

這時候我們通常需要對資訊進行過濾,來顯示我們需要的資訊, 這時候我們指定的 tag就派上了用場.

adb logcat -s MyAndroid:I

這時將只顯示tag為MyAndroid,級別為I或級別高於I(Warning,Error)的日誌資訊.

示例程式碼如下:


Java程式碼 
package com.zijun;    
   
import android.app.Activity;    
import android.content.Context;    
import android.graphics.Canvas;    
import android.os.Bundle;    
import android.util.Log;    
import android.view.MotionEvent;    
import android.view.View;    
   
public class MyAndroid extends Activity {    
        
    protected static final String ACTIVITY_TAG="MyAndroid";    
        
    @Override   
    protected void onCreate(Bundle icicle) {    
        super.onCreate(icicle);    
        setContentView(new MyView(this));    
    }    
    public class MyView extends View {    
        public MyView(Context c) {    
            super(c);    
        }    
        @Override   
        protected void onDraw(Canvas canvas) {    
     
        }    
        @Override   
        public boolean onMotionEvent(MotionEvent event) {    
            Log.i(MyAndroid.ACTIVITY_TAG, "=============================");    
                
            Log.d(MyAndroid.ACTIVITY_TAG, "Haha , this is a DEBUG of MyAndroid. ");    
            Log.i(MyAndroid.ACTIVITY_TAG, "Haha , this is a INFO of MyAndroid. ");    
            Log.w(MyAndroid.ACTIVITY_TAG, "Haha , this is a WARNING of MyAndroid. ");    
   
            return true;    
        }    
            
    }    
   
}  

 

以上程式執行後, 在命令列執行  adb logcat -s MyAndroid:I 
然後在手機模擬器的螢幕上 點選 拖動滑鼠 就能看到相應的日誌資訊.

logcat是Android中一個命令列工具,可以用於得到程式的log資訊。

logcat使用方法如下所示: 
logcat [options] [filterspecs]
logcat的選項包括:
  -s                    設定過濾器,例如指定 '*:s'
  -f <filename>   輸出到檔案,預設情況是標準輸出。
  -r [<kbytes>]   Rotate log every kbytes. (16 if unspecified). Requires -f
  -n <count>      Sets max number of rotated logs to <count>, default 4
  -v <format>     設定log的列印格式,  <format> 是下面的一種:
                         brief process tag thread raw time threadtime long

  -c                   清除所有log並退出
  -d                   得到所有log並退出 (不阻塞)
  -g                   得到環形緩衝區的大小並退出
  -b <buffer>     請求不同的環形緩衝區    ('main' (預設), 'radio', 'events')
  -B                   輸出log到二進位制中。

過濾器的格式是一個這樣的串:
  <tag>[:priority]

其中 <tag> 表示log的component, tag (或者使用 * 表示所有) , priority 如下所示:
  V    Verbose
  D    Debug
  I    Info
  W    Warn
  E    Error
  F    Fatal
  S    Silent


事實上logcat的功能是由Android的類android.util.Log決定的,在程式中log的使用方法如下所示:
Log.v() -------------------- VERBOSE
Log.d() -------------------- DEBUG
Log.i() -------------------- INFO
Log.w() -------------------- WARN
Log.e() -------------------- ERROR
以上log的級別依次升高,DEBUG資訊應當只存在於開發中,INFO, WARN,ERROR這三種log將出現在釋出版本中。

對於JAVA類,可以宣告一個字串常量TAG,Logcat可以根據他來區分不同的log,例如在計算器(Calculator)的類中,定義如下所示:

public class Calculator extends Activity {
/* ...... */
    private static final String LOG_TAG = "Calculator";
    private static final boolean DEBUG  = false;
    private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
/* ...... */
   由此,所有在Calculator中使用的log,均以"Calculator"為開頭。

例如使用方法如下所示:
# logcat &
< 得到一個log片段 >
W/KeyCharacterMap(  130): No keyboard for id 0
W/KeyCharacterMap(  130): Using default keymap: /system/usr/keychars/qwerty.kcm.bin
I/ActivityManager(   52): Displayed activitycom.android.contacts/.DialtactsContactsEntryActivity: 983 ms
I/ARMAssembler(   52): generated scanline__00000077:03545404_00000A04_00000000 [ 29 ipp] (51 ins) at [0x25c978:0x25ca44] in 1764174 ns
I/ARMAssembler(   52): generated scanline__00000077:03515104_00000001_00000000 [ 46 ipp] (65 ins) at [0x25d1c8:0x25d2cc] in 776789 ns
D/dalvikvm(  130): GC freed 834 objects / 81760 bytes in 63ms
D/dalvikvm(   52): GC freed 10588 objects / 425776 bytes in 94ms

其中W/I/D表示log的級別,“dalvikvm”“ARMAssembler”等是不同元件(component)的名稱,後面括號裡面的數字表示了發出log的程式號。

使用技巧:
1.使用logcat &在後臺執行
2.使用-d得到所有log
3.使用-f或者重定向(>和>>)輸出到檔案
4.使用-s設定過濾器,得到想要的log。

當然,最重要的還是在程式中加入恰當的log.

 

本文來自CSDN部落格,轉載請標明出處:http://blog.csdn.net/setsuna_L_seiei/archive/2010/01/19/5206232.aspx


相關文章