You shouldn't confuse what is the default behaviour of InputStream and what most of its subclasses do. A principle of OO design is that sub-classes can change the behaviour of a method for that implementation.
From InputStream - read(byte[]) calls read() repeatedly.
public int read(byte b[], int off, int len) throws IOException {
// code removed
for (; i < len ; i++) {
c = read();
// code removed
}
From BufferedInputStream - read(byte[]) does not call read().
public synchronized int read(byte b[], int off, int len) throws IOException {
// code removed
int nread = read1(b, off + n, len - n);
// code removed
}
private int read1(byte[] b, int off, int len) throws IOException {
// code removed
return getInIfOpen().read(b, off, len);
// code removed
}
From FileInputStream - read(byte[]) does not call read().
public int read(byte b[], int off, int len) throws IOException {
return readBytes(b, off, len);
}
private native int readBytes(byte b[], int off, int len) throws IOException;
While InputStream will read one byte at a time, almost all the implementations will pass read(byte[]) to the same method in the underlying stream.
Note: the implementations for read(byte[], int, int) are different in all three cases.
What i mean to ask more clearly is: Let's say i want to read 20 bytes, Reading one byte at a time will hit underlying stream (e.g. file system) every time in a loop that means 20 times..ok Now reading array of 20 bytes in one go, i.e using read(byte[] 20), Now that's gonna hit underlying stream (e.g. file system) one time or 20 times..?? (as it's given: read(byte[] b) method is also going to call the method read() repeatedly 20 times) ??
Whether you use BufferedInputStream or FileInputStream, one read(byte[]) results in atmost one system call to read into the byte[].