Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
android 设备与 .net 网络服务通信的最佳方式是什么?我看过 ksoap2 但我并没有完全卖掉它,因为它很旧而且似乎不再更新了。我知道谷歌更喜欢 REST 设计。所以我不知道。
我只会使用 REST 和 JSON。我的 wcf 服务主要使用 GET 并返回 JSON。如果需要,您可以使用 JSON 内容进行 POST。对于 Android,您可以使用 HttpClient 或 HttpUrlConnection(Android 推荐使用 HttpUrlConnection)来完成大多数简单的 HTTP 操作。如果您需要做多部分实体,我建议使用 Apache HttpMime 库。