收到位置后如何写入文本文件?
我正在实现该应用程序,就像跟踪用户的旅行一样。 现在我使用 SQLite 数据库来记录位置、时间和日期 如果互联网已连接,则自动通过 JSON 发送到 MySQL 服务器。
但我想做如下:
1)我想在发送到服务器之前将每次旅行的数据保存为文本文件。
2)我不知道在写入文件之前是否应该在SQLite中记录数据?
3)我还需要列出文档菜单中的所有文件以向用户显示所有文件 并检查所有文件的状态是否已完全发送或未发送。
我尝试搜索好的教程和任何示例,但尚未找到。 如果有人有关于写入/读取文件的好教程以及对此有任何想法,请建议我。
太感谢了
I'm implementing the application just like tracking the user's traveling.
Now I'm using the SQLite database which is record the location, time,and date
then automatically send to the MySQL server via JSON if the Internet is connecting.
But I want to do like the following:
1) I would like to keep data as a text file of each traveling before send to server.
2) I don't know that I should record data in SQLite before write as a file or not?
3) I also need to list all files in the document menu to show user all files
and check the status of all files are completely sent or did not send.
I tried to search for the good tutorial and any examples but did not find them yet.
If anyone have a good tutorial for write/read file and any idea for these, please suggests me.
Thank you so much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里是一个很好的教程将数据写入文件并将其保存到 SD 卡。
Here is good tutorial how to write data to file and save it to SD card.