Delete comment from: Java67
You can also use following code to append content to a file in Java 8, it's much easier and looks clean:
Files.write(path, content.getBytes(charset), StandardOption.APPEND);
or
Files.write(path, lines, charset, StandardOptiona.APPEND)
where path is instance of Path class which encapsulate a String path to the file
lines is text, and charset is character encoding.
May 20, 2016, 2:49:09 AM
Posted to How to append text to existing File in Java? Example