Java BufferedWriter example

This is tutorial of Java BufferedWriter with example code.

Java BufferedWriter example

This is tutorial of Java BufferedWriter with example code.

Java BufferedWriter example

Write a File using BufferedWriter

    

Write a File using BufferedWriter

In this section, you will learn how to write to a file using BufferedWriter.

What is BufferedWriter?

BufferedWriter buffer character to write characters, arrays and strings. It write text to a character-output stream.

Given below example will give you a clear idea :

Example :

import java.io.*;

public class FileWriteBufferedWriter {
public static void main(String[] args) {
try {
BufferedWriter out = new BufferedWriter(new FileWriter(
"NewDevFile.txt"));
out.write("Welcome to Devmanuals");
out.close();
System.out.println("File created successfully");
} catch (IOException e) {
}
}
}

Output

If file created successfully, it will show you the following message :

File created successfully    

Download Source Code