1

For a project I need to append to a textfile using UTF-8 encoding. During my research I found two possibilities:

BufferedWriter out = new BufferedWriter(
    new OutputStreamWriter(new FileOutputStream("file.txt), "UTF-8")
)

This will write to my file in UTF-8, but it will overwrite it, rather than append to it if it already exist.

Then I found the code to apend to an existing file with a parameter in the FileWriter, but this will not use UTF-8 explicitely, rather than use the default system character set:

BufferedWriter out = new BufferedWriter(new FileWriter("myfile.txt", true))

I now need the possibility to define BOTH the encoding as well as appending to a file. Just rely on the system encoding or change this is not an option.

Any thoughts?

diginoise
  • 7,352
  • 2
  • 31
  • 39
  • see this answer: https://stackoverflow.com/questions/30307382/how-to-append-text-to-file-in-java-8-using-specified-charset – diginoise Aug 10 '17 at 13:02

2 Answers2

5

You forgot to add the true paramter to the FileOutputStream constructor:

BufferedWriter out = new BufferedWriter(
    new OutputStreamWriter(
        new FileOutputStream("file.txt", true), // true to append
        StandardCharsets.UTF_8                  // Set encoding
    )
);
vnea
  • 84
  • 3
1
try {
    BufferedWriter out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("myFile.txt", true), "UTF-8"));
    out.write("Hello World");
    out.close();
} catch (IOException e) {
    e.printStackTrace();
}
eliaspr
  • 302
  • 3
  • 15