I'm trying to access data (read only) from a very large (>100 GB) ascii coded text file. The file mostly contains coordinates (16 digit float, including decimal point), and some other minor information (names, etc.).
Hence I'm consider using RandomAccessFile to avoid having to load large amount of data into memory. (I could, for instance, cache lines of data into memory to speed it up but let's save that for later and assume time isn't an issue here as long as it's not close to infinity).
Question: may I assume that the seek and read methods would not cause RandomAccessFile to load huge amount of data into memory?
Thank you very much.