如何随时随地保存 Android 日志

发布于 2024-10-25 17:25:15 字数 166 浏览 1 评论 0原文

我目前正在构建一个 Android 应用程序,用于跟踪用户的位置。 我的目标是在旅途中测试它,这样设备就无法连接到我的计算机。 尽管如此,我想回家后阅读我的日志。

在设备上保存日志并稍后在 Eclipse 中显示它们的最简单方法是什么?我只想保存我的应用程序日志。

谢谢你, 乔纳森

I´m currently building an Android app, which tracks the user´s location.
My aim is to test it on the go, so the device can´t be connected to my computer.
Nevertheless I want to read my logs after returning back home.

What is the easiest way to save my logs on the device and show them in eclipse later? I just want to save my application´s logs.

Thank you,
Jonathan

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

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

发布评论

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

评论(3

天生の放荡 2024-11-01 17:25:15

“日志”——假设您指的是 LogCat——会自动“保存”。 LogCat 是一个 64KB 的环形缓冲区。您不必插入 Eclipse 来记录数据。当您稍后插入 Eclipse 时,您将看到最后 64KB 的日志。

The "logs" -- assuming that you mean LogCat -- are automatically "saved". LogCat is a 64KB ring buffer. You do not have to be plugged into Eclipse to log data. When you plug into Eclipse later, you will see the last 64KB of logs.

折戟 2024-11-01 17:25:15

将日志保存在某种格式化的字符串中,然后启动电子邮件发送意图,以便在完成后通过电子邮件将其发送给自己。或者创建一些List,其中DataType是一个保存有关事件的一些信息的对象。完成后,再次以所需格式通过电子邮件发送给他们

Save the logs in some sort of formatted String, than start an email send intent to email them to yourself once complete. or create some List<DataType> where DataType is an object holding some info about an event. once complete, again email them in desired format

小糖芽 2024-11-01 17:25:15

您可以将数据保存到 sqllite 数据库中。退出应用程序后,您会将数据转储到文件中。

You could save your data into an sqllite database. Once you exit the app you'll dump the data to a file.

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