I need to append text repeatedly to an existing file in Java. How do I do that?
|
|
Are you doing this for logging purposes? If so Apache Log4j is the de facto standard Java logging library. If you just want something simple, this will work:
The second parameter to the |
||||
|
|
|
You can use fileWriter with a true for appending.
|
|||
|
|
|
Shouldn't all of the answers here with try/catch blocks have the .close() pieces contained in a finally block? Example for marked answer:
|
||||
|
|
|
Edit - as of Apache Commons 2.1, the correct way to do it is:
|
||||
|
|
|
I just add small detail:
2.nd parameter (true) is a feature (or, interface) called appendable (http://docs.oracle.com/javase/7/docs/api/java/lang/Appendable.html). It is responsible for being able to add some content to the end of particular file/stream. This interface is implemented since Java 1.5. Each object (i.e. BufferedWriter, CharArrayWriter, CharBuffer, FileWriter, FilterWriter, LogStream, OutputStreamWriter, PipedWriter, PrintStream, PrintWriter, StringBuffer, StringBuilder, StringWriter, Writer) with this interface can be used for adding content In other words, you can add some content to your gzipped file, or some http process |
|||
|
|
this will do what you intend for.. |
|||
|
|
