why use printwriter when you can use fileWriter directly code example
Example: writing to a text file java
PrintWriter writer = new PrintWriter("the-file-name.txt", "UTF-8");
writer.println("The first line");
writer.println("The second line");
writer.close();