我需要从计算机上将非常大的文件上传到服务器。 (几GB) 目前,我尝试了以下方法,但我不断尝试。
Caused by: java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:3236)
我可以增加内存,但这不是我想做的事情,因为不确定我的代码将在哪里运行。我想读取几MB / kb,将它们发送到服务器并释放内存并重复。尝试了其他方法,例如Files utils或IOUtils.copyLarge,但我遇到了同样的问题。
URL serverUrl =
new URL(url);
HttpURLConnection urlConnection = (HttpURLConnection) serverUrl.openConnection();
urlConnection.setConnectTimeout(Configs.TIMEOUT);
urlConnection.setReadTimeout(Configs.TIMEOUT);
File fileToUpload = new File(file);
urlConnection.setDoOutput(true);
urlConnection.setRequestMethod("POST");
urlConnection.addRequestProperty("Content-Type", "application/octet-stream");
urlConnection.connect();
OutputStream output = urlConnection.getOutputStream();
FileInputStream input = new FileInputStream(fileToUpload);
upload(input, output);
//..close streams
private static long upload(InputStream input, OutputStream output) throws IOException {
try (
ReadableByteChannel inputChannel = Channels.newChannel(input);
WritableByteChannel outputChannel = Channels.newChannel(output)
) {
ByteBuffer buffer = ByteBuffer.allocateDirect(10240);
long size = 0;
while (inputChannel.read(buffer) != -1) {
buffer.flip();
size += outputChannel.write(buffer);
buffer.clear();
}
return size;
}
}
我认为这与this有关,但是我无法弄清楚自己在做什么错。
另一种方法是,但我遇到了同样的问题:
private static long copy(InputStream source, OutputStream sink)
throws IOException {
long nread = 0L;
byte[] buf = new byte[10240];
int n;
int i = 0;
while ((n = source.read(buf)) > 0) {
sink.write(buf, 0, n);
nread += n;
i++;
if (i % 10 == 0) {
log.info("flush");
sink.flush();
}
}
return nread;
}
答案 0 :(得分:1)
对与链接到以下位置的重复问题Denis Tulskiy使用setFixedLengthStreamingMode的this answer:
conn.setFixedLengthStreamingMode((int) fileToUpload.length());
从文档中
此方法用于在事先知道内容长度的情况下启用HTTP请求主体的流传输而无需内部缓冲。
此刻,您的代码正在尝试将文件缓冲到Java的堆内存中,以便计算HTTP请求上的Content-Length
头。