将 HttpEntity 写入文件

发布于 2024-08-22 22:30:05 字数 316 浏览 4 评论 0原文

我正在尝试使用 jakarta commons HttpClient 库。

我想我在这里很愚蠢,但我不知道如何将完整的 HttpEntity 写入文件。

我正在尝试:

FileOutputStream os = new FileOutputStream(f);

e.writeTo(os);
while (e.isStreaming()) {
   e.writeTo(os);
}

其中 e 是我的 HttpEntity,f 是我的文件。我只得到任何文件的前 8KB,我猜是因为在某处缓冲。知道我如何得到其余的吗?

I'm trying to use the jakarta commons HttpClient library.

I think I'm being dumb here, but I can't figure out how to write a complete HttpEntity to file.

I'm trying:

FileOutputStream os = new FileOutputStream(f);

e.writeTo(os);
while (e.isStreaming()) {
   e.writeTo(os);
}

Where e is my HttpEntity and f is my file. I only get the first 8KB of any file, I guess due to buffering somewhere. Any idea how I get the rest?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九公里浅绿 2024-08-29 22:30:05

解决了。

我需要强制响应对象使用 BufferedHttpEntity:

HttpEntity entity = rsp.getEntity();
BufferedHttpEntity buf = new BufferedHttpEntity(entity);

Solved it.

I needed to force the response object to use a BufferedHttpEntity:

HttpEntity entity = rsp.getEntity();
BufferedHttpEntity buf = new BufferedHttpEntity(entity);
陪你搞怪i 2024-08-29 22:30:05
response = httpclient.execute(get);
is = response.getEntity().getContent();
IOUtils.copy(is,fileWriter);
response = httpclient.execute(get);
is = response.getEntity().getContent();
IOUtils.copy(is,fileWriter);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文