When calling read(byte[]) on a FileInputStream, the read size is always 8k, even if byte[] is exponentially large.
How do you increase the max read amount returned per call?
Please do not suggest a method that merely masks the limitation of FileInputStream.
Update: There doesn't seem to be a real solution to this. However, I calculated the method call overhead to about 226uS on my system, for 1G file. It's probably safe to say this is not going to impact the performance in any real way.