| Author |
how to append in a file from beginning.
|
saurabh agr
Ranch Hand
Joined: Apr 14, 2010
Posts: 35
|
|
hello all,
i am doing some file related work at some point i want to append the file from the beginning but i don't know how to do this, please help.
i m using File Writer constructor with second argument true for appending in the file but it appends from the end of the file but i want to insert something at beginning of the file contents.
Thanks.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19216
|
|
|
You can't, or at least not directly. File systems usually don't allow prepending, only appending. You'll need to use a temporary file as an intermediate solution. Write to the temporary file first, then delete the original file and rename the temporary file to the original file.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: how to append in a file from beginning.
|
|
|