Android:将 Log.x() 调用重定向到文件?

发布于 2024-11-06 13:08:43 字数 60 浏览 0 评论 0原文

是否可以将通过 Log.x(...) [x € d, i 等] 发送的消息记录到文件中?感谢您的任何提示!

is it possible to log messages sent through Log.x(...) [x € d, i etc.] to a file? Thanks for any hint!

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

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

发布评论

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

评论(2

一萌ing 2024-11-13 13:08:43

从 adb shell 中,您可以执行 logcat > some_file

您也可以从具有读取日志所需权限的应用程序发出此 shell 命令

From the adb shell you can do logcat > some_file

You can probably also issue this shell command from an application which has the necessary permission to read logs

余生共白头 2024-11-13 13:08:43

打开cmd提示符,

设置我们的平台工具在android sdk中的路径

,例如:

c:\android-sdk\platformtools > adb logcat > log.txt

这是将日志存储在文件中的命令:

adb logcat >;日志.txt

open the cmd prompt

set up the path of our platform tools in android sdk

eg:

c:\android-sdk\platformtools > adb logcat > log.txt

This is the command to store the log in a file:

adb logcat > log.txt

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