Answers for "Write java program to read and write character using file."

3

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();
Posted by: Guest on April-07-2020

Code answers related to "Write java program to read and write character using file."

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language