The openRandom method of the ClientStoreFile Class contains the following signatures:
openRandom()
openRandom(boolean writable)
Opens a RandomAccessFile from the store for read operations, with no specified flags.
public RandomAccessFile openRandom() throws IOException;
Returns the RandomAccessFile that is opened.
IOException if the method fails to open the specified file.
Opens a RandomAccessFile from the store for read or write operations, with no specified flags.
public RandomAccessFile openRandom(boolean writable) throws IOException;
Returns the RandomAccessFile that is opened.
writable | Set this value to true if the file should be opened as OPEN_FL_WRITABLE; otherwise, set writable to false. |
IOException if the method fails to open the specified file.