Write to file using a BufferedWriter : BufferedWriter « File « Java Tutorial






import java.io.BufferedWriter;
import java.io.FileWriter;

public class Main {
  public static void main(String[] args) throws Exception {
    BufferedWriter bufferedWriter = null;
    bufferedWriter = new BufferedWriter(new FileWriter("yourFile.txt"));
    bufferedWriter.write("string");
    bufferedWriter.newLine();
    bufferedWriter.write("string");
  }
}








11.36.BufferedWriter
11.36.1.BufferedWriter
11.36.2.Create BufferedWriter from FileWriter
11.36.3.Read Input From User and Write to File
11.36.4.Write to file using a BufferedWriter
11.36.5.Use a BufferedReader and a BufferedWriter to copy a text file, inverting the case of letters in the process
11.36.6.Writing to a File: If the file does not exist, it is automatically created.
11.36.7.Appending to a File
11.36.8.Nested creation of FileWriter, BufferedWriter and PrintWriter