BufferedRandomAccessFile
is like a RandomAccessFile
, but it uses a private buffer so that most operations do not require a disk access. Note: The operations on this class are unmonitored. Also, the correct functioning of the RandomAccessFile
methods that are not overridden here relies on the implementation of those methods in the superclass. Author : Avinash Lakshman ( alakshman@facebook.com) & Prashant Malik ( pmalik@facebook.com )
BufferedRandomAccessFile
is like a RandomAccessFile
, but it uses a private buffer so that most operations do not require a disk access. Note: The operations on this class are unmonitored. Also, the correct functioning of the RandomAccessFile
methods that are not overridden here relies on the implementation of those methods in the superclass.
|
|