Hi, I have a question on RandomAccessFile class in java.io package. Using this class if we open a exisitng file in "rw" mode and write some data ,it always seems to overwrite the existing file. Am I right ? Is there any way to make it append to a file ? Thanks Milind
Andrew Edmonds
Greenhorn
Joined: Nov 05, 2000
Posts: 7
posted
0
Yes, it will overwrite because on opening the file the pointer will always be set at the beginning of the file. To append you need to move the pointer to the end of the file first before writing: If f is your file reference then f.seek(f.length()); should do it. Andrew