How to write to a txt file in java in the end Code 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();
how to write to a txt file in java in the end
PrintWriter writer = new PrintWriter("faylismi.txt", "UTF-8");
writer.println("The first line");
writer.println("The second line");
writer.close();