Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Does that include manually using a BufferedInputStream? – user166390 Jan 26 '11 at 4:12

2 Answers

Wrap it in a BufferedInputStream which allows you to specify the buffer size.

share|improve this answer
Doesn't this just wrap the fileinputstream read method in a while loop? – Casey Jan 26 '11 at 3:51
Will it help the fact that the underlying FileInputStream will issue an OS read() every 8k? Well, maybe OS's I/O subsystem will batch several consecutive reads together, but the overhead of Java-to-OS call is still here. – 9000 Jan 26 '11 at 3:52

You could try to memory map the file by using NIO, but I'm not sure what the problem with 8K is. You can either copy the 8K to your bigger array or use the returned length to call

public int read(byte[] b,
                int off,
                int len)
         throws IOException

With off being the return value from the last read.

share|improve this answer
Reading a 1G file at 8K is 2^17 method calls. I'm interested in benchmarking with lower JVM overhead. – Casey Jan 26 '11 at 3:58
In that case FileChannel.map might work better for you, although I don't see a problem with those calls. The JVM will optimize away most of the overhead anyways. – Jochen Bedersdorfer Jan 26 '11 at 4:05
Also the OS/FS are responsible for their own read-ahead buffers. So once it gets in-step the system calls should be relatively cheap. (E.g. what is overhead of system call for the IO read itself?) – user166390 Jan 26 '11 at 4:14
What makes you believe the JVM will optimize it away? If that were the case, it should perform a read larger than 8k when possible. – Casey Jan 26 '11 at 4:15
The overhead is ~226uS ... not much – Casey Jan 26 '11 at 4:27
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.