RandomAccessFile Read Sequentially Randomly

A file can be read either sequentially (continuously) or randomly (here and there). So far, in all the programs, what we have done is sequential access, starting from the beginning of the file to the end of the file. Or we have skipped some bytes in a file and read the remaining bytes of the …

RandomAccessFile Read Sequentially Randomly Read More »