gpt4 book ai didi

android - Android 中的 HTTPS 请求/响应

转载 作者:行者123 更新时间:2023-11-29 22:31:07 25 4
gpt4 key购买 nike

需要使用 HTTPS 协议(protocol)向服务提供商发送 POST 请求,服务提供商的响应将是一个 xml 文件,也需要阅读它。

最佳答案

您可以先看看 AndroidHttpClientHttpPost .

像这样的东西应该工作:

 final AndroidHttpClient httpClient = AndroidHttpClient.newInstance(this.getClass().getSimpleName());
HttpResponse httpresponse = null;
HttpEntity httpentity = null;
HttpUriRequest httprequest = new HttpPost("https://...");
byte[] xmlByteArray = null;

if ((httpresponse = httpClient.execute(httprequest)) != null) {
if ((httpentity = httpresponse.getEntity()) != null) {
xmlByteArray = EntityUtils.toByteArray(httpentity);
}
}

另外,我的 RestClient在 github 上可能会有用。注意:我使用 GET 来检索数据,所以 YMMV。

关于android - Android 中的 HTTPS 请求/响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3989806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com