Android 中的 HTTPS 请求/响应
需要使用 HTTPS 协议向服务提供商发送 POST 请求,服务提供商的响应将是一个 xml 文件,也需要读取该文件。
Need to send a POST request to a Service provider using HTTPS protocol, response from the service provider will be an xml file, need to read that also.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以首先查看 AndroidHttpClient 和 HttpPost。
像这样的东西应该工作:
另外,我的RestClient 可能会有用。
注意:我使用 GET 来检索数据,所以 YMMV。
You could start by taking a look at AndroidHttpClient and at HttpPost.
Something like this should work:
Also, my RestClient on github might be useful.
Note: I use GET to retrieve the data, so YMMV.