如何使用java httpclient实现大文件的HTTP Post分块上传?
我有一个巨大的文件要上传,另一端的服务器确实支持分块上传。 有没有具体的例子说明如何做到这一点? 或者还有其他库可以做到这一点?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 HttpClient 4(来自 Apache)
希望这会有所帮助。
Using HttpClient 4 (From Apache)
Hope this helps.
使用HttpURLConnection,只需设置分块传输模式即可。
Using HttpURLConnection, just set chunked transfer mode.