我有一个URL,当我进入浏览器时,它会完美地打开图像。但是,当我尝试以下代码时,我将getContentLength()作为-1:
URL url = new URL(imageUrl);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// determine the image size and allocate a buffer
int fileSize = connection.getContentLength();
请指导我背后的原因是什么?
答案 0 :(得分:8)
如果服务器使用Chunked Transfer Encoding发送响应,您将无法预先计算大小。响应是流式传输的,您只需分配一个缓冲区来存储图像,直到流完成。请注意,只有在可以保证图像足够小以适应内存的情况下才应该这样做。如果图像可能很大,则将响应流式传输到闪存存储是一个非常合理的选择。
内存解决方案:
private static final int READ_SIZE = 16384;
byte[] imageBuf;
if (-1 == contentLength) {
byte[] buf = new byte[READ_SIZE];
int bufferLeft = buf.length;
int offset = 0;
int result = 0;
outer: do {
while (bufferLeft > 0) {
result = is.read(buf, offset, bufferLeft);
if (result < 0) {
// we're done
break outer;
}
offset += result;
bufferLeft -= result;
}
// resize
bufferLeft = READ_SIZE;
int newSize = buf.length + READ_SIZE;
byte[] newBuf = new byte[newSize];
System.arraycopy(buf, 0, newBuf, 0, buf.length);
buf = newBuf;
} while (true);
imageBuf = new byte[offset];
System.arraycopy(buf, 0, imageBuf, 0, offset);
} else { // download using the simple method
理论上,如果Http客户端呈现为HTTP 1.0,大多数服务器将切换回非流模式,但我不相信这是URLConnection的可能性。