Reputation: 25778
I am wondering if RandomAccessFile uses a lot of memory when openning a large-size file or not?
Upvotes: 1
Views: 281
Reputation: 44746
No. It just allows you to read and write to specific locations within the file, it doesn't maintain any data internally about the file.
Upvotes: 3