如何在android中查看日志文件

发布于 2024-11-06 07:26:09 字数 109 浏览 0 评论 0原文

我想要一个在 android 中创建日志文件的代码,并在运行时检查该日志文件的创建位置,我也在 java 中提供了相同的示例

我们可以使用 android 本身中的预定义函数创建日志文件吗

I want a code for creating the log file in android and at the run time where to check where this log file is getting created, I also example for the same in java

Can we create a log file using predefined functions in android itself

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

高跟鞋的旋律 2024-11-13 07:26:09

您可以在设备上启动自己的 logcat 进程,并将输出重定向到某个文件。这是基础知识(在单独的线程上执行)

Process logcat = Runtime.getRuntime().exec("logcat"); // start process
BufferedReader reader = new BufferedReader( new InputStreamReader(logcat.getInputStream())); // grab output stream
// store to file or print to screen

You can start your own process of logcat on the device, and redirect the output to some file. This is the basics ( do it on a separate thread)

Process logcat = Runtime.getRuntime().exec("logcat"); // start process
BufferedReader reader = new BufferedReader( new InputStreamReader(logcat.getInputStream())); // grab output stream
// store to file or print to screen
神经暖 2024-11-13 07:26:09

请参阅日志LogCat

Refer to Log and LogCat.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文