从 android 发送 XML 格式数据到 google 地图
我想将我的 MapView 地理位置和用户数据从我的 Android 发送到使用 Google 地图的网站。
如何将 XML 文件中的数据发送到我的服务器?或者还有比发送更好的方式吗?
i want to send my MapView geolocation and user data from my android to a website using Google maps.
How can i send my data in an XML file to my server? or is there other ways better than sending it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 JSON 对象并发送字符串,例如:{"lon":-4253447,"lat":55864243},然后将其解析回 JSON 对象。
I use a JSON object and send the string e.g. : {"lon":-4253447,"lat":55864243} and then parse it back into a JSON object.
也许我因为今天是星期天而头脑僵硬,但是为什么你要发送 XML 文件呢?为什么不直接使用 POST 或 GET 发送值对?
Maybe I have a brainfreeze because it's sunday, but why would you want to send an XML file? Why not just send your value pairs using POST or GET?