Android:读取 logcat 输出的有效方法

发布于 2024-10-14 19:44:28 字数 143 浏览 1 评论 0原文

如何以最有效的方式读取正在运行的进程的输出

让我解释一下我想要实现的目标。

我正在尝试通过手机上的应用程序读取 logcat,

我想让 logcat 中的任何更新都能立即反映出来,并且该应用程序非常高效,例如更少的电池消耗。

How can one read the output of a running process in the most efficient manner

Let me explain what i am trying to achieve.

I am trying to read logcat via my app on the phone

I want to make it such that any update in the logcat is instantly reflected and the app is efficient , like less battery consumption.

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

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

发布评论

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

评论(2

梦毁影碎の 2024-10-21 19:44:28

您可能会对 android-logger 感兴趣。它是一个开源应用程序,允许您从手机上的应用程序读取 logcat。我相信您会在此应用程序中找到您需要的代码。

android-logger may be of interest to you. Its an open source app that allows you to read logcat from an app on your phone. I'm sure you will find the code you need in this app.

待天淡蓝洁白时 2024-10-21 19:44:28

选项:

  1. 日食。有一个“logCat”视图,您可以添加Window->Show View...->Other->Android->LogCat。
  2. 亚行。使用 Android 调试器控制台。运行“adb logcat”(这与#1 相同,但没有 Eclipse)。

为了提高效率:

  1. 不要在应用程序中记录太多内容!
  2. 使用过滤器。在 eclipse 的 logCat 中,您可以按文本、标签等进行过滤...
  3. 电池并不重要。日志通过 USB 输出(无论如何都应该允许您充电!)

Options:

  1. Eclipse. There is a "logCat" view you can add Window->Show View...->Other->Android->LogCat.
  2. ADB. Use the android debugger console. Run "adb logcat" (this is the same as #1 but without eclipse).

To be efficient:

  1. Don't log too much in the app!
  2. Use filters. In eclipse's logCat you can filter by text, tag, etc...
  3. Battery doesn't matter. The log is output over USB (which should be allowing you to charge anyway!)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文