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.

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top