Some strings are coming out like this at the time of generating my .txt
É fácil entrar em contato com a área
I read another .txt file that has several phrases, I make a treatment of all the lines and I separate the part that interests me, hence I generate a .txt file It's just going out like this. Do you have any way to solve it?
Reader lerArquivo = new FileReader(getNomeArquivo());
BufferedReader br2 = new BufferedReader(lerArquivo);
String linha;
while ((linha = br2.readLine()) != null) {
}
// to generate the file I use
FileWriter x = new FileWriter("geraArquivo.txt", false);
x.write(organizaString);