Adam Lee
Adam Lee

Reputation: 25778

Will RandomAccessFile use a lot of memory when openning large-size file?

I am wondering if RandomAccessFile uses a lot of memory when openning a large-size file or not?

Upvotes: 1

Views: 281

Answers (1)

Jeff Foster
Jeff Foster

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

Related Questions