search
HomeJavajavaTutorialJava BufferedReader

The Java BufferedReader Class of Java Programming Language involves with reading the text from the character-input stream; buffered characters will provide the most efficient characters reading, arrays reading, and lines reading. For each and every read request made of a Reader, which can cause corresponding request reading, which is needed to be made of some underlying character or some byte stream. Therefore, now it is advisable to wrap a BufferedReader around the reader who’s read() function operations may be somewhat costly like inputStreamReaders and FileReaders.

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

Syntax:

Public class BufferedReader Extends Reader

How does Java BufferedReader Class work?

The Java BufferedReader Class basically works just by reading the text of the character input stream and the buffering characters, which are about to provide the efficient reading of arrays, characters, and lines. There are some of the important points to make the BufferedReader Class work. They are buffer size can be specified or may have some default size. The default size of it is somewhat large enough for each and most of the purposes. The programs that actually use the DataInputStreams for some textual input localized by replacing for each and every DataInputStream along with an appropriate BufferedReader.

Constructors of Java BufferedReader

Given below are the two different types of constructors:

  • BufferedReader(Reader in)
  • BufferedReader(Reader in, int sz)

1. BufferedReader(Reader in): This constructor will create one buffering character input stream, which actually used as a default sized input buffer or buffering.

2. BufferedReader(Reader in, int sz): This constructor will create a buffering input character stream that actually uses input buffering of some specific size.

Methods of Java BufferedReader

Given below are the methods:

1. Void Close() Method of BufferedReader Class: The void close() method will help close the streaming or stream and release any type of system resources that actually associate with it.

2. Void mark(int readAheadLimit) Method of BufferedReader Class: The Void mark (int readAheadLimit) method will help in marking the present position/spot in the stream.

3. Boolean markSupported() Method of BufferedReader Class: The Boolean markSupported() method will tell the support stream the mark() function operation, which it actually does.

4. Int read() Method of BufferedReader: The int read() method will read a single character.

5. Int read(char[] cbuf , int off, int len) Method of BufferedReader Class: The int read(char[] cbuf, int off, int len) method will read the character into some array portion.

6. String readLine() Method of Java BufferedReader Class: The string readLine () method will read the text line / lines as needed.

7. Boolean ready() Method of Java BufferedReader Class: The Boolean ready () method will actually tell if/whether the particular stream is actually ready in reading.

8. Void reset() Method of Java BufferedReader Class: The void reset() method will reset the stream so easily.

9. Long skip(long n) Method of Java BufferedReader Class: The Long skip (long n) method will easily skip the characters.

Examples of Java BufferedReader

Given below are the examples mentioned:

Example #1

This is an example of implementing the Java BufferedReader methods. At first, some libraries are imported using the import function. Then main() is created to create the needed program. Then fr1 FileReader and br1 BufferedReader are created. Then character array with 21 lengths is created then IF Loop is created to illustrate markSupported() function/method. Then again, IF is created for illustrating the ready() method.

The br.skip() is used to skip the first 8 characters of the text, which is in the file1.txt. Inside of the IF LOOP readLine() method and read () are illustrated. Then FOR LOOP is created with 21 lengths as a condition to print the characters which are within the 21 characters. Then line break will be printed. Then reset() method is illustrated. Then FOR LOOP for illustrating reset() and read() method.

Code:

import java.io.BufferedReader;
//importing bufferreader java library
import java.io.FileReader;
//importing FileReader java library
import java.io.IOException;
//importing IOException java library
public class BufferedReaderDemo
{
public static void main(String[] args) throws IOException
{
FileReader fr1 = new FileReader("file1.txt");
BufferedReader br1 = new BufferedReader(fr1);
char c1[]=new char[21];
if(br1.markSupported())
{
System.out.println("\nBufferedReader's mark() method is now supported");
br1.mark(101);
}
br1.skip(9);
if(br1.ready())
{
System.out.println(br1.readLine());
br1.read(c1);
for (int i = 0; i 
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500531094476.jpg?x-oss-process=image/resize,p_40" class="lazy" alt="Java BufferedReader" ></p>
<h4 id="Example">Example #2</h4>
<p>This is an example of implementing the Java BufferedReader Class Methods. At first, here, java IO function libraries are included. Then a public class called “BufferedReaderExample1” is created, and then the main() function is created to write the user needed code which throws the exception. Then the “fr1” variable is created for file reading (file1.txt), and then the “br1” variable is created, which is the buffered reader for fr1. Then int i1 is created, and then WHILE LOOP is created to implement read() method/function with the condition not equal to -1. Inside of the loop system.out.println() is used to print the whole characters of the file1.txt.</p>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">import java.io.*;
public class BufferedReaderExample1 {
public static void main(String args[])throws Exception{
System.out.println(" ==> :: This is the example of implementing Java BufferedReader Class concept with the help of various method of the BufferedReader Class of the Java Programming Language :: 
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500531170483.jpg?x-oss-process=image/resize,p_40" class="lazy" alt="Java BufferedReader" ></p>
<h3 id="Conclusion">Conclusion</h3>
<p>In this article, we saw the definition of BufferedReader class along with its syntax, how the java BufferedReader class works, constructors of java BufferedReader class, methods of java BufferedReader class along with some of the examples.</p>

The above is the detailed content of Java BufferedReader. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!