This example shows how to write to a file using write method of BufferedWriter.
import java.io.*;
public class Main {
public static void main(String[] args) {
try {
BufferedWriter out = new
BufferedWriter(new FileWriter("outfilename"));
out.write("aString");
out.close();
System.out.println
("File created successfully");
}
catch (IOException e) {
}
}
}
Result:
The above code sample will produce the following result.