gpt4 book ai didi

android - 如何从 HttpResponse 中读取字节数组?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:42:45 26 4
gpt4 key购买 nike

我正在使用以下代码建立 http 连接:

HttpClient client = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse response = client.execute(httpPost);

我想从响应对象中读取一个字节数组。

我该怎么做?

最佳答案

您可以使用方法直接读取字节数组:EntityUtils.toByteArray

例子

HttpClient client = new DefaultHttpClient();
HttpGet get = new HttpGet("localhost:8080/myurl");
HttpResponse response = client.execute(get);
byte[] content = EntityUtils.toByteArray(response.getEntity());

关于android - 如何从 HttpResponse 中读取字节数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5015598/

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