建议使用哪种协议将 GPS 数据从 Android 应用程序发送到服务器
我是android编程的初学者。我现在正在致力于将数据(GPS 数据)从 Android 应用程序发送到服务器。但我不知道哪种协议更适合这个主题。
为我推荐的来源有哪些?
先感谢您。
I am beginner in android programming. I am working on sending data( GPS datas ) from android application to the server nowadays. But I don't know which protocol is better for this subject.
What are the recommended sources for me ?
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将创建一个 HTTP/S REST 服务器来接收数据。
就数据格式而言,我将使用 JSON 或 XML。
JSON 通常比 XML 更简单、更轻量,如果您不需要 XML 的额外功能,那么 JSON 就是最佳选择。
I would create a HTTP/S REST server to receive the data.
As far and the data format I would use either JSON or XML.
JSON is generally simpler and more lightweight than XML, and if you don't need the extra features of XML JSON is the way to go.