Is it possible to position cursor to the start of a specific line in a file through RandomAccessFile?
For e.g. I want to change String starting at char 10 till 20 in
To use RandomAccessFile you either need to have fixed-length records or have a "dope vector" of offsets to the start of each record (or, eg, every 10th record). These may or may not be appropriate to your problem.