Home Java Example Java Io Java BufferedWriter example



Java BufferedWriter example
Posted on: February 19, 2011 at 12:00 AM
This is tutorial of Java BufferedWriter with example code.

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

Related Tags for Java BufferedWriter example:


More Tutorials from this section

Ask Questions?    Discuss: Java BufferedWriter example  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.