View Single Post
  #1 (permalink)  
Old 12-07-2007, 03:05 PM
bugger bugger is offline
Senior Member
 
Join Date: Nov 2007
Posts: 111
bugger is on a distinguished road
Randomly accessing a text file
RandomAccessFile provides useful methods to read a file randomly.

Code:
RandomAccessFile ref = new RandomAccessFile("abc.txt", "r");
I want to write some text at a random position in a file. Which class can provide the required functionality.
Reply With Quote
Sponsored Links