当前位置:首页 » 安卓系统 » android查看logcat

android查看logcat

发布时间: 2022-12-22 02:06:02

❶ 如何获取 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--------");
}

热点内容
17g缓存 发布:2025-04-03 16:07:17 浏览:373
超级直播内置服务器地址 发布:2025-04-03 16:00:56 浏览:715
天喻加密软件 发布:2025-04-03 15:58:32 浏览:592
java线程池的关闭 发布:2025-04-03 15:57:33 浏览:754
c语言与汇编语言混合编程 发布:2025-04-03 15:29:04 浏览:317
把无线密码忘了怎么办 发布:2025-04-03 15:24:52 浏览:235
氯化钙存储 发布:2025-04-03 15:24:47 浏览:504
数据库宏的设计 发布:2025-04-03 15:24:40 浏览:756
服务器ip地址怎么看手机 发布:2025-04-03 15:21:33 浏览:142
c语言期中 发布:2025-04-03 15:07:39 浏览:19