内部的缓冲byte[]buffer,定义的大小为4096,如果要写的io流内容超过这个大小呢
贴个源码:
public static int copy(InputStream input, OutputStream output) throws IOException {
long count = copyLarge(input, output);
if (count > Integer.MAX_VALUE) {
return -1;
}
return (int) count;
}
public static long copyLarge(InputStream input, OutputStream output)
throws IOException {
return copyLarge(input, output, new byte[DEFAULT_BUFFER_SIZE]);//大小为4096
}
public static long copyLarge(InputStream input, OutputStream output, byte[] buffer)
throws IOException {
long count = 0;
int n = 0;
while (EOF != (n = input.read(buffer))) {
output.write(buffer, 0, n);
count += n;
}
return count;
}
也没看见对buffer有什么别的处理呀?如果buffer大小不够呢?
關鍵看這裡
while (EOF != (n = input.read(buffer)))
文檔裡是這麼說的:
是說每次最多讀4096位元組,如果多於4096位元組會由while循環讀取多次
你覺得緩衝區應該要多大?如果你要複製一個幾百MB的文件,那麼緩衝區也要有幾百MB大小?
緩衝區就像一個推車,來往於i/o端,運送數據,作用就是減少了來往的次數,減少了開銷。