将数据从 Android 应用程序发送到 Web 服务
我有一个带有 SQLite 数据库的 Android 应用程序,我想将一些数据发送到 Web 服务以将其存储在数据库中。
我该怎么做呢?有聪明的方法吗?
我考虑过从 SQLite 数据库中提取数据并创建一个 XML 文件来保存,然后将 XML 文件发送到 Web 服务,但是有没有更简单/更好的方法来做到这一点?
I have an Android application with a SQLite database from which I want to send some data to a webservice to store it in a database there.
How would I go about doing this? Is there a smart way of doing it?
I've thought about just extracting the data from the SQLite database and create an XML file to hold and then send the XML file to the webservice, but is there a easier/better way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JSON 通常被视为一种更有效的数据格式,用于在移动设备之间传输数据。查看这篇帖子了解如何操作它。当然,您需要一个可以接受和解释 JSON 对象的 Web 服务。
JSON is generally seen as a more efficient data format for transferring to and from mobile devices. Check out this post about how to do it. You will, of course, need a web service that can accept and interpret JSON objects.