如何使用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?

使用HttpURLConnection,只需设置分块传输模式.

Using HttpURLConnection, just set chunked transfer mode.