Question

I've to be continuously editing a 1MB file, simulating a file system. I've to modify the directory of File Control Blocks, FAT, blocks, etc.

Proffesor recommended overwriting the file every time an update is made. 1MB shouldn't take minutes to do that, but I don't like this way.

Is it a FileChannel the way to go here? Also, I understand that if I edit a MappedByteBuffer, the content of the mapped file region is also edited immediately? i.e. is reflexive mapped?

Thanks.

Was it helpful?

Solution

You need RandomAccessFile.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top