Logcat相關

一個Android應用程序運行後 並不會在 IDE 的控制檯內輸出任何信息. 不能在控制檯輸出。可是android提供的Log類。java

 

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

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);canvas

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

tag是一個標識,能夠是任意字符串,一般可使用類名+方法名, 主要是用來在查看日誌時提供一個篩選條件.ide

 

若是要後查看日誌 請使用工具

adb logcat網站

關於adb的更多信息請查看官方網站.ui

當執行 adb logcat 後會以tail方式實時顯示出全部的日誌信息.this

這時候咱們一般須要對信息進行過濾,來顯示咱們須要的信息, 這時候咱們指定的 tag就派上了用場.spa

adb logcat -s MyAndroid:I

這時將只顯示tag爲MyAndroid,級別爲I或級別高於I(Warning,Error)的日誌信息.

示例代碼以下:


Java代碼 

[java] view plain copy

 在CODE上查看代碼片派生到個人代碼片

  1. package com.example.hello;      
  2.      
  3. import android.app.Activity;      
  4. import android.content.Context;      
  5. import android.graphics.Canvas;      
  6. import android.os.Bundle;      
  7. import android.util.Log;      
  8. import android.view.MotionEvent;      
  9. import android.view.View;      
  10.      
  11. public class MyAndroid extends Activity {      
  12.           
  13.     protected static final String ACTIVITY_TAG="MyAndroid";      
  14.           
  15.     @Override     
  16.     protected void onCreate(Bundle icicle) {      
  17.         super.onCreate(icicle);      
  18.         setContentView(new MyView(this));      
  19.     }      
  20.     public class MyView extends View {      
  21.         public MyView(Context c) {      
  22.             super(c);      
  23.         }      
  24.         @Override     
  25.         protected void onDraw(Canvas canvas) {      
  26.        
  27.         }      
  28.         @Override     
  29.         public boolean onMotionEvent(MotionEvent event) {      
  30.             Log.i(MyAndroid.ACTIVITY_TAG, "=============================");      
  31.                   
  32.             Log.d(MyAndroid.ACTIVITY_TAG, "Haha , this is a DEBUG of MyAndroid. ");      
  33.             Log.i(MyAndroid.ACTIVITY_TAG, "Haha , this is a INFO of MyAndroid. ");      
  34.             Log.w(MyAndroid.ACTIVITY_TAG, "Haha , this is a WARNING of MyAndroid. ");      
  35.      
  36.             return true;      
  37.         }      
  38.               
  39.     }      
  40.      
  41. }    


 

以上程序運行後, 在命令行執行  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.

相關文章
相關標籤/搜索