Home Answers Viewqa Java-Beginners Why bufferedreader is used in java?

 
 


Java Coder
Why bufferedreader is used in java?
1 Answer(s)      3 months and 14 days ago
Posted in : Java Beginners

Hi,

What is the use of BufferedReader class in Java? why bufferedreader is used in java?

It will be great if anyone can give me the example code of BufferedReader class in java.

Thanks

View Answers

February 8, 2013 at 11:56 PM


Hello,

The BufferedReader class is present in the java.io package:

java.io.BufferedReader

This class is used for reading the text-input stream in Java efficiently. This java.io.BufferedReader class buffers the characters which results in the high efficiency of the application.

The java.io.BufferedReader class can be used to read the large text files ( ranging in many GB's).

The java.io.BufferedReader class is very flexible and it allows the developers to specify the size of buffer. The default buffer size of this class is 8192 chars. Which can be increased also. This buffer size is sufficient in general programming.

You can see the example at the tutorial Java Read File Line by Line - Java Tutorial.

Thanks









Related Pages:

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.