如何使用java httpclient实现大文件的HTTP Post分块上传?

发布于 2024-10-20 20:19:53 字数 73 浏览 4 评论 0原文

我有一个巨大的文件要上传,另一端的服务器确实支持分块上传。 有没有具体的例子说明如何做到这一点? 或者还有其他库可以做到这一点?

I have an enormous file to upload and server on other side does support chunked upload.
Is there any example of how exactly to do that?
Or there is some other library which do that?

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

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

发布评论

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

评论(2

好倦 2024-10-27 20:19:53

使用 HttpClient 4(来自 Apache)

HttpPost post = new HttpPost(url);
MultipartEntity content = new MultipartEntity(HttpMultipartMode.STRICT);

//To add parameters, use StringBody
content.addPart("param", new StringBody("value"));
content.addPart("param1", new StringBody("value1"));
content.addPart("param2", new StringBody("value2"));

//To add files, use InputStreamBody
content.addPart("source", new InputStreamBody(inputStream, mimeType, fileName)); //OR
content.addPart("source", new InputStreamBody(inputStream, mimeType));

//Finally
post.setEntity(content);

希望这会有所帮助。

Using HttpClient 4 (From Apache)

HttpPost post = new HttpPost(url);
MultipartEntity content = new MultipartEntity(HttpMultipartMode.STRICT);

//To add parameters, use StringBody
content.addPart("param", new StringBody("value"));
content.addPart("param1", new StringBody("value1"));
content.addPart("param2", new StringBody("value2"));

//To add files, use InputStreamBody
content.addPart("source", new InputStreamBody(inputStream, mimeType, fileName)); //OR
content.addPart("source", new InputStreamBody(inputStream, mimeType));

//Finally
post.setEntity(content);

Hope this helps.

黯然#的苍凉 2024-10-27 20:19:53

使用HttpURLConnection,只需设置分块传输模式即可。

Using HttpURLConnection, just set chunked transfer mode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文