Write to file using a BufferedWriter : BufferedWriter « File Input Output « Java






Write to file using a BufferedWriter

 

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");
  }
}

   
  








Related examples in the same category

1.new BufferedWriter(new OutputStreamWriter(System.out))
2.Read Input From User and Write to File
3.Use a BufferedReader and a BufferedWriter to copy a text file, inverting the case of letters in the process
4.Writing to a File: If the file does not exist, it is automatically created.
5.Appending to a File
6.Write text file
7.Nested creation of FileWriter, BufferedWriter and PrintWriter
8.Create BufferedWriter from FileWriter and write strings to the file