In this tutorial we are going to see how use RandomAccessFile in order to to read an write data to a File in random positions. The RandomAccessFile class treats the file as an array of Bytes. And you can write your data in any position of the Array. To do that, it uses a pointer that holds the current position (you ...
Read More »