Android LogCat使用詳解

來源:互聯網
上載者:User

Android的Logcat用於顯示系統的調試資訊,可在分別以下幾個地方查看和調用logcat:

1.eclipse的Debug模式或DDMS模式下的會有一個Logcat視窗,用於顯示log日誌

只需在eclipse中啟動Android模擬器,切換到DDMS或debug模式下,就會有Logcat視窗,視窗右上方有一系列表徵圖,其中V、D、I、W、E五個表徵圖為五個調試資訊過濾器:
V:不過濾輸出所有調試資訊 包括 VERBOSE、DEBUG、INFO、WARN、ERROR
D:debug過濾器,輸出DEBUG、INFO、WARN、ERROR調試資訊
I:info過濾器,輸出INFO、WARN、ERROR調試資訊
W:waring過濾器,輸出WARN和ERROR調試資訊
E:error過濾器,只輸出ERROR調試資訊

2.Android命令模式下,在啟動一個模擬器是可以選擇是否需要啟動logcat:

Android Emulator命令的用法: emulator [options] [-qemu args]
1.Android Emulator命令的用法: emulator [options] [-qemu args]
啟動模擬器命令:emulator -avd <name> -logcat <tags>;
name:模擬器名字,tags調試資訊過濾器類型
例如:emulator -avd GPhone -logcat w
啟動GPhone模擬器並運行logcat顯示調試資訊,調試資訊的過濾器是w(可替換為v、d、i、e),代表只顯示waring和error兩類調試資訊。
2.Android adb 命令:adb logcat [ <filter-spec> ] - View device log
<filter-spec> == <priority>/<tag>,(pritrity標籤,tag為過濾類型)
例如:2.1、adb logcat 顯示所有調試資訊
      2.2、adb logcat *:w 顯示waring過濾器過濾後的調試資訊
      2.3、adb logcat Test1:V Test2:D 顯示標籤為Test1的所有調試資訊,以及顯示標籤為Test2Debug過濾器過濾後的調試資訊

3.Android程式中訪問調試日誌,並顯示:

摘自:http://www.iteye.com/topic/477112
logcat介紹命令選項。
-s 預設設定過濾器
-f      輸出到記錄檔
-c 清除日誌
-d 擷取日誌
-g 擷取日誌的大小
-v      格式設定日誌(見下面的格式列印格式)
-v 格式 例
brief W/tag ( 876): message
process W( 876) message (tag)
tag W/tag : message
thread W( 876:0x37c) message
raw message
time 09-08 05:40:26.729 W/tag ( 876): message
threadtime 09-08 05:40:26.729 876 892 W tag : message
long [ 09-08 05:40:26.729 876:0x37c W/tag ] message
代碼例子:
AndroidManifest.xml添加讀取許可權
<uses-permission android:name="android.permission.READ_LOGS" />
清除日誌
try { 
    Runtime.getRuntime().exec("logcat -c"); 
} catch(Exception e) { 
擷取日誌
try { 
    ArrayList<String> commandLine = new ArrayList<String>(); 
    commandLine.add( "logcat"); 
    commandLine.add( "-d"); 
    commandLine.add( "-v"); 
    commandLine.add( "time"); 
    commandLine.add( "-s"); 
    commandLine.add( "tag:W"); 
    Process process = Runtime.getRuntime().exec( commandLine.toArray( new String[commandLine.size()])); 
    BufferedReader bufferedReader = new BufferedReader( new InputStreamReader(process.getInputStream()), 1024); 
    String line = bufferedReader.readLine(); 
    while ( line != null) { 
        log.append(line); 
        log.append("\n") 
    } 
   } catch ( IOException e) { 
}
結果:
09-08 09:44:42.267 W/tag     (  754): message1 
09-08 09:44:42.709 W/tag     (  754): message2 
09-08 09:44:43.187 W/tag     (  754): message3 
09-08 09:44:45.295 E/tag     (  754): message8

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.