Android:将 Log.x() 调用重定向到文件?
是否可以将通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 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
打开cmd提示符,
设置我们的平台工具在android sdk中的路径
,例如:
这是将日志存储在文件中的命令:
adb logcat >;日志.txt
open the cmd prompt
set up the path of our platform tools in android sdk
eg:
This is the command to store the log in a file:
adb logcat > log.txt