gpt4 book ai didi

android - 无休止地接收分块数据

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:40:37 25 4
gpt4 key购买 nike

正如您可能知道的,在 HTTP header 中发送分块文件时,没有内容长度,因此程序必须等待 0 才能理解文件结束。

--sample http header  
POST /some/path HTTP/1.1
Host: www.example.com
Content-Type: text/plain
Transfer-Encoding: chunked
25
This is the data in the first chunk
8
sequence
0

要接收此文件,可以使用以下代码。

ResponseHandler<String> reshandler = new ResponseHandler<String>() {
public String handleResponse(HttpResponse response) throws ClientProtocolException, IOException {

HttpEntity entity = response.getEntity();

InputStream in = entity.getContent();
byte[] b = new byte[500];
StringBuffer out = new StringBuffer();
int len = in.read(b);
out.append(new String(b, 0 , len));

return out.toString();
}
};

但就我而言,我使用流媒体 channel ,换句话说,没有 0 表示该文件已结束。无论如何,如果我使用这段代码,它似乎永远等待 0,而 0 永远不会发生。我的问题是有没有更好的方法从流 channel 接收分块文件?

最佳答案

好的。我可以使用简单的方法接收数据(如下所示且不使用 Response Handler)。不管怎样,我还是对apache ChunkedInputStream有点困惑以及当普通输入流可以处理分块数据时它是如何有用的。

is =  entity.getContent();
StringBuffer out = new StringBuffer();
byte[] b = new byte[800];
int len = is.read(b);
out.append(new String(b, 0 , len));
result = out.toString();

关于android - 无休止地接收分块数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7076725/

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