android查看logcat
❶ 如何獲取 android 的系統日誌 logcat
讀取日誌需要的許可權
1
<uses-permission android:name="android.permission.READ_LOGS"/>
主要代碼
package mt.fzgh;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class MyLog
{
public static class MLog //靜態類
{
public static void getLog()
{
System.out.println("--------func start--------"); // 方法啟動
try
{
ArrayList<String> cmdLine=new ArrayList<String>(); //設置命令 logcat -d 讀取日誌
cmdLine.add("logcat");
cmdLine.add("-d");
ArrayList<String> clearLog=new ArrayList<String>(); //設置命令 logcat -c 清除日誌
clearLog.add("logcat");
clearLog.add("-c");
Process process=Runtime.getRuntime().exec(cmdLine.toArray(new String[cmdLine.size()])); //捕獲日誌
BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(process.getInputStream())); //將捕獲內容轉換為BufferedReader
// Runtime.runFinalizersOnExit(true);
String str=null;
while((str=bufferedReader.readLine())!=null) //開始讀取日誌,每次讀取一行
{
Runtime.getRuntime().exec(clearLog.toArray(new String[clearLog.size()])); //清理日誌....這里至關重要,不清理的話,任何操作都將產生新的日誌,代碼進入死循環,直到bufferreader滿
System.out.println(str); //輸出,在logcat中查看效果,也可以是其他操作,比如發送給伺服器..
}
if(str==null)
{
System.out.println("-- is null --");
}
}
catch(Exception e)
{
e.printStackTrace();
}
System.out.println("--------func end--------");
}
}
}
❷ android logcat怎麼看
開發方式,在eclipse中的windows中的show View中的other ,然後,打開other對話框,選擇android中,找到logcat即可。在狀態欄或者右側可以找到logcat的圖標。
使用方法,可以使用Log.i("exp",e.toString());這樣的方式來給自己的應用大bug信息。
然後,查看logcat中的tag,和text描述。就可以查看到錯誤產生的原因了
當然這只是最簡單的使用,一般調試信息非常的多,我們可能只是希望看到我們想看到信息,這個時候,可以使用filter過濾一下信息。選擇logcat的組面板上的+信息
在這里我們可以對於tag賦值,然後查看使用到的log信息,這樣過濾到的信息,就是你正在調試的信息。
注意!!!使用LOG,需要導入LOG的包文件,import android.util.Log;
❸ Android logcat使用總結
輸出指定的ring buffer(s). 可選項如下:
多選使用『,』作為分隔符:
-b main,system,radio,events,crash,kernel
-d Dump the log and then exit (don't block).
mp出logcat後即退出,不阻塞。
--pid=<pid> Only print logs from the given pid.
指定輸出pid列印的logcat。
例如(只輸出system_server的列印):
logcat --pid= pidof system_server
-v指定輸出格式,可選的格式如下:
brief — Display priority/tag and PID of the process issuing the message.
例如:
D/WindowManager( 845): Receive Input KeyEvent of Powerkey up
process — Display PID only.
例如:
W( 356) Warning: Dispc cannot support 5 layer blending(0) (DPUMole
raw — Display the raw log message, with no other metadata fields.
例如:
Checking safeboot...
tag — Display the priority/tag only.
例如:
I/chatty : uid=1000(system) PowerController expire 22 lines
thread — Display priority, PID and TID of process issuing the message.
例如:
I( 845: 885) uid=1000(system) ActivityManager expire 8 lines
threadtime — Display the date, invocation time, priority, tag, and the PID
and TID of the thread issuing the message. (the default format).
例如:
04-15 10:34:11.352 587 1282 I chatty : uid=1000(system) watchdog expire 10 lines
time — Display the date, invocation time, priority/tag, and PID of the
process issuing the message.
例如:
04-15 12:43:42.509 V/FingerprintService( 845): mDaemon was null, reconnect to fingerprint
long — Display all metadata fields, separate messages with blank lines.
例如:
-v threadtime 是默認值:
另外,還可以額外添加修飾符:
例如(color,會以不同的顏色分別高亮不同優先順序的列印):
logcat -v tag,color
將logcat保存到本地。
如果長時間抓取logcat,一般推薦 -f -r -n 一起使用。
例如(保存到data/logcat.txt,每個文件最大2M,最多保存20個文件):
logcat -f data/logcat.txt -r 2048 -n 20
設置過濾器。
-s Set default filter to silent. Equivalent to filterspec '*:S'
slient,最高優先順序顯示。
使用正則表達式。
例如:
logcat -e ^check.+$
例如:
-g/-G 用於查看/修改ring buffer的大小。
❹ 如何在android studio中查到logcat信息
工具/原料
Android Studio
方法/步驟
啟動Android Studio,選中android工程並打開
工具欄選擇【Tools】-》【Android】
點擊【Android】選項,子選項選中【Android Device Monitor】,彈出窗口,該窗口類似eclipse
Android Device Monitor窗口,如圖
Android Device Monitor窗口上方有設備管理,可以選中已連接的模擬器或實際設備(android手機、平板),在右側的窗口可以查看當前設備的實時數據及狀態,如:數據連接,線程,文件管理等等
Android Device Monitor窗口下方為Logcat和Console 控制台
選擇需要追蹤的工程,查看詳細調試信息
可以對調試信息進行過濾,如標簽名,包名,日誌級別等
❺ 如何獲取 android 的系統日誌 logcat
在windows7操作系統下,開發平台為android studio可以按照如下步驟獲取android 的系統日誌 logcat。
1、首先打開android studio的頁面,如下圖:
❻ Android 日誌系統分析(三):logcat
logcat 作為讀取日誌的工具,相當於client 的角色;在前兩篇文章中,關於 logcat 如何與其他部分溝通獲取日誌信息的流程已經介紹的比較清晰,本文不在贅述,轉而歸納一下 logcat 的一些常用指令,並對其中一些做詳細分析
Android 日誌系統為日誌消息保留了多個環形緩沖區,但並非多有的日誌消息都會發送到默認的環形緩沖區。這里可以採用 logcat -b 命令查看設備的其他緩沖區:
如果需要查看內核空間日誌信息,可採用如下幾種方式查看:
1、讀取 /proc/kmsg ,命令如下
讀取/proc/kmsg屬於消費型讀取,讀取之後再次讀取不會顯示已經讀取過的日誌信息
2、讀取 /dev/kmsg ,命令如下
讀取/dev/kmsg會顯示緩存區裡面的所有日誌信息。新寫入的日誌信息會不斷累加到日誌緩沖器中
3、使用 dmesg 命令讀取
dmesg命令讀取一次只顯示一部分日誌,非阻塞執行
使用 -v 命令來修改 log 的輸出格式,以顯示特定的元數據欄位:
優先順序:
logcat -f 命令可以將日誌消息輸出到指定的文件中。這里我們需要確定的一件事是 logcat 作為客戶端的角色,會將通過 liblog 獲得的日誌信息進行格式解析、格式化處理,而 liblog 庫本身並不存在保存、解析的功能。這里來對 -f 指令做一下解析:
在 _logcat() 函數中解析 -f 指令,設置日誌輸出文件。例如 logcat -f sdcard/log.txt ,則 context->outputFileName 賦值為 sdcard/log.txt ;
以 printBinary() 函數為例:
logcat.cpp # printBinary() :
[ 1 ] Android物語:logcat
[ 2 ] android調試——logcat詳解
[ 3 ] 玩轉Android10源碼開發定製(12)內核篇之logcat輸出內核日誌
❼ 如何獲取 android 的系統日誌 logcat
讀取日誌需要的許可權
1
<uses-permission android:name="android.permission.READ_LOGS"/>
主要代碼
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package mt.fzgh;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class MyLog
{
public static class MLog //靜態類
{
public static void getLog()
{
System.out.println("--------func start--------"); // 方法啟動
try
{
ArrayList<String> cmdLine=new ArrayList<String>(); //設置命令 logcat -d 讀取日誌
cmdLine.add("logcat");
cmdLine.add("-d");
ArrayList<String> clearLog=new ArrayList<String>(); //設置命令 logcat -c 清除日誌
clearLog.add("logcat");
clearLog.add("-c");
Process process=Runtime.getRuntime().exec(cmdLine.toArray(new String[cmdLine.size()])); //捕獲日誌
BufferedReader bufferedReader=new BufferedReader(new InputStreamReader(process.getInputStream())); //將捕獲內容轉換為BufferedReader
// Runtime.runFinalizersOnExit(true);
String str=null;
while((str=bufferedReader.readLine())!=null) //開始讀取日誌,每次讀取一行
{
Runtime.getRuntime().exec(clearLog.toArray(new String[clearLog.size()])); //清理日誌....這里至關重要,不清理的話,任何操作都將產生新的日誌,代碼進入死循環,直到bufferreader滿
System.out.println(str); //輸出,在logcat中查看效果,也可以是其他操作,比如發送給伺服器..
}
if(str==null)
{
System.out.println("-- is null --");
}
}
catch(Exception e)
{
e.printStackTrace();
}
System.out.println("--------func end--------");
}