Tagged Questions
2
votes
5answers
2k views
Buffer a large file; BufferedInputStream limited to 2gb; Arrays limited to 2^31 bytes
I am sequentially processing a large file and I'd like to keep a large chunk of it in memory, 16gb ram available on a 64 bit system.
A quick and dirty way is to do this, is simply wrap the input ...