Question

I have used Filewriter class. But it will append at the end of the file. Can anyone tell me the method to append the contents to the file at the beginning without overwriting.

Was it helpful?

Solution

You can't, basically. That's not a Java limitation so much as a file system limitation - I can't remember ever seeing an API which allows this.

You'll need to create a new file, write your new data, then append the contents of the original file to it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top