0
I’m using this code to record to the archive:
try(BufferedWriter bw = Files.newBufferedWriter(caminho, formato)){
bw.write("frase teste\n");
bw.write("outra coisa");
}catch(IOException e) {
e.printStackTrace();
}
But he doesn’t recognize the character. How do I solve?