I have a file called "contatti.txt" with some contact info, I need to write a string into a specific line of the txt file.
For example, I need to change the content of line 32 with "something..."
This is the code that let me write this file in append mode
File filee=new File("contatti.txt");
BufferedWriter bw=new BufferedWriter(new FileWriter(filee,true));
???
bw.close();