如何在android中查看日志文件
我想要一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在设备上启动自己的 logcat 进程,并将输出重定向到某个文件。这是基础知识(在单独的线程上执行)
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)
请参阅日志和LogCat。
Refer to Log and LogCat.