将数据从 Android 应用传输到外部数据库
我需要定期从 Android 应用程序发送一些数据到外部 SQL 服务器。我正在考虑为此目的创建一个 WCF 服务,该服务将接收 JSON 对象或 XML。
这是这样做的好方法吗?有人有更好的主意吗?
I need to send some data periodically from an Android app to an external SQL server. I was thinking about creating a WCF service for this purpose which would receive a JSON object or perhaps XML.
Is this a good way of doing this? Anyone have a better idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我有用。在我的一个项目中,我使用 WCF 服务,它提供了数据库的 RESTful 接口。序列化格式为JSON。不需要任何外部库,什么都不需要,而且双方都很容易实现。网络上有数以千计的关于这两个主题的信息。
Works for me. In one of my projects i'm using a WCF service which offers a RESTful interface to a database. Serialization format is JSON. No need for any external libraries, no nothing and it's easy to implement on both sides. There are thousand of info around the web about both topics.