我们正在使用HttpClient 4.1.2。 当我们尝试将文档上传到服务器时,如果我们尝试上传大小小于2 GB的文档,该文档工作正常,如果我上传的文档超过2 GB,那么我会在下面看到错误。
java.net.SocketException: Connection reset by peer: socket write error
at java.net.SocketOutputStream.socketWrite0(Native Method)
at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
at com.sun.net.ssl.internal.ssl.OutputRecord.writeBuffer(OutputRecord.java:297)
at com.sun.net.ssl.internal.ssl.OutputRecord.write(OutputRecord.java:286)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecordInternal(SSLSocketImpl.java:743)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:731)
at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:59)
at org.apache.http.impl.io.AbstractSessionOutputBuffer.write(AbstractSessionOutputBuffer.java:153)
at org.apache.http.impl.io.ContentLengthOutputStream.write(ContentLengthOutputStream.java:114)
at org.apache.commons.io.output.ProxyOutputStream.write(ProxyOutputStream.java:90)
at org.apache.commons.io.IOUtils.copyLarge(IOUtils.java:1859)
请找到以下代码:
try {
// Requires a multi-part post
MultipartEntity requestEntity = new MultipartEntity();
post.setEntity(requestEntity);
requestEntity.addPart(MIME_TYPE_NAME, new StringBody(mimeType));
requestEntity.addPart(USER_ID_PARAMETER, new StringBody(loginUser
.getUserid().toLowerCase()));
requestEntity.addPart(USER_PASSWORD_PARAMETER, new StringBody(
loginUser.getPassword()));
requestEntity.addPart(DOCUMENT_PART_NAME,
new ProgressReportingFileBody(filePath, uploadListener));
post.getParams().setBooleanParameter(
CoreProtocolPNames.USE_EXPECT_CONTINUE, true);
// Find out what happened with the request
HttpContext context = new BasicHttpContext();
// Add AuthCache to the execution context
context.setAttribute(ClientContext.AUTH_CACHE, authCache);
// Perform the POST
setCurrentRequest(post);
HttpResponse response = httpClient.execute(targetHost, post,
context);
// Get the response back
message = response.getEntity();
// Ensure the middleware returned an acceptable response
checkError(response, context);
checkInterrupted(post);
Header documentId = response.getFirstHeader("DOCUMENT_ID");
oDoc.sMimeType = mimeType;
} catch (ClientProtocolException ex) {
throw new IwException(-3, "HTTP Error: " + ex.getMessage(),
ex.toString());
} catch (IOException ex) {
checkInterrupted(post);
log.error("Failed to Upload Document", ex);
throw new IwException(-3, "Upload Document Error: "
+ ex.getMessage(), ex.toString());
} finally {
try {
if (message != null) {
// Clean up to allow another HTTP client call
EntityUtils.consume(message);
}
} catch (IOException ex) {
log.error("Failed to Close HTTP Connection", ex);
}
}
任何想法可能是什么/将是伟大的!谢谢你的时间。
答案 0 :(得分:1)
以块的形式上传,每个块的大小为256 Mb或大约。加入服务器端。在编程层面,这很容易做到。此外,上传3 Gb可能需要很长时间。如果失败,有可能用较小的块重试。