Java BufferedInputStream is a mechanism where the Input buffer has the capability to assign the buffer some bytes as part of the stream internally. Whenever a BufferedInputStream is invoked or created, an internal array will get created and then it will perform any kind of further functionality of adding bytes into the stream. The buffer mechanism in the BufferedInputStream class provides flexibility and enhances the overall performance of the buffer. If some information gets missed from the stream, it refills and fills the evacuated position by assigning them.
Start Your Free Software Development Course
Web development, programming languages, Software testing & others
Syntax
public class BufferedInputStream extends FilterInputStream
The syntax flow is as follows:
A class named BufferedInputStream will be used to get all the methods and their input parameters related to the class to be extended using the FilterInputStream.
Constructors
There are two types of constructors that the Java BufferedInputStream Class, namely support:
BufferedInputStream(InputStream in)
This helps in creating a BufferedInputStream and saves its argument into that buffer as the input stream in, and further, this argument is used later at some point of time for input streamflow.
BufferedInputStream(input stream in, int size)
This constructor creates a bufferedInputStream with some specific buffer size and saves its arguments for inserting into the stream later at some point of time with respect to time and size.
Methods
These are the methods supported by the Java BufferedInputStream class.
int available() void close() void mark(int readlimit) boolean markSupported() int read() int read(byte[] b, int off, int len) void reset() long skip(long n) int available()
It just provides an estimation for the number of bytes provided to the input stream, and the invocation of the next input stream method should also not hinder the previous method for its insertion of bytes to the input stream. It can also be said that its return type is the estimated number of bytes that can be read or skipped while passing as an input stream.
Examples to Implement Java BufferedInputStream
below are some examples are mentioned:
Example #1
This program illustrates the int available method of BufferedInputStream Class:
Code:
import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class Java_Input_Buffer_Ex { public static void main(String[] args) throws Exception{ BufferedInputStream inpt_smpl = null; FileInputStream sample_input_stream = null; try { sample_input_stream = new FileInputStream("C:\\Users\\adutta\\anu_test.txt"); inpt_smpl = new BufferedInputStream(sample_input_stream); while( inpt_smpl.available() > 0 ) { Integer No_of_bytes = inpt_smpl.available(); System.out.println("Number of Bytes Available to I/O stream = " + No_of_bytes ); char ch = (char)inpt_smpl.read(); System.out.println("Read Each character = " + ch ); } } catch(Exception e) { e.printStackTrace(); } finally { if(sample_input_stream!=null) sample_input_stream.close(); if(inpt_smpl!=null) inpt_smpl.close(); } } }
Output:
void close()
Explanation: As its name suggests void close() method as part of the Java BufferedInputStream method is used to close the input stream once the stream and its associated buffer working is finished. It will be used for releasing and freeing the resources once the stream is asked to close. The method will throw Exception once closed and later tried again to resume for the remaining method like reading, available, reset, skip.
Example #2
This program illustrates the void close() method of the Java BufferedInputStream class.
Code:
import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class Java_Input_Buffer_Ex { public static void main(String[] args) throws Exception{ BufferedInputStream inpt_smpl = null; FileInputStream sample_input_stream = null; try { sample_input_stream = new FileInputStream("C:\\Users\\adutta\\anu_test.txt"); inpt_smpl = new BufferedInputStream(sample_input_stream); int byte_num = inpt_smpl.available(); System.out.println(byte_num); inpt_smpl.close(); byte_num = inpt_smpl.available(); System.out.println(byte_num); } catch(Exception e) { e.printStackTrace(); } finally { if(sample_input_stream!=null) sample_input_stream.close(); if(inpt_smpl!=null) inpt_smpl.close(); } } }
Output:
void mark(int readlimit)
Explanation: This method, as part of the BufferedInputStream is used to set up the buffer with some constraint and limit of bytes with some int value that will be used for reading the value before the marked position with the limit set up becomes invalid.
Example #3
This program illustrates the void mark(int readlimit) method of the Java BufferedInputStream class.
Code:
import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class Java_Input_Buffer_Ex { public static void main(String[] args) throws Exception{ BufferedInputStream inpt_smpl = null; FileInputStream sample_input_stream = null; try { sample_input_stream = new FileInputStream("C:\\Users\\adutta\\anu_test.txt"); inpt_smpl = new BufferedInputStream(sample_input_stream); System.out.println("Character_value : "+(char)inpt_smpl.read()); System.out.println("Character_value : "+(char)inpt_smpl.read()); System.out.println("Character_value : "+(char)inpt_smpl.read()); inpt_smpl.mark(0); System.out.println("Character_value : "+(char)inpt_smpl.read()); System.out.println("Invoked the reset() method"); inpt_smpl.reset(); System.out.println("character_value : "+(char)inpt_smpl.read()); System.out.println("character_value : "+(char)inpt_smpl.read()); } catch(Exception e) { e.printStackTrace(); } finally { if(sample_input_stream!=null) sample_input_stream.close(); if(inpt_smpl!=null) inpt_smpl.close(); } } }
Output:
boolean markSupported()
Explanation: This method, as part of the Java BufferedInputStream class, is used for verification purposes whether the reset () and mark () methods support for the class and returns some value as true or false for the boolean markSupported.
Example #4
This program illustrates the boolean markSupported method of the Java BufferedInputStream class.
Code:
import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class Java_Input_Buffer_Ex { public static void main(String[] args) throws Exception{ BufferedInputStream inpt_smpl = null; FileInputStream sample_input_stream = null; boolean bool_val = false; try { sample_input_stream = new FileInputStream("C:\\Users\\adutta\\anu_test.txt"); inpt_smpl = new BufferedInputStream(sample_input_stream); bool_val = inpt_smpl.markSupported(); System.out.println("Support for mark() and reset() : "+bool_val); } catch(Exception e) { e.printStackTrace(); } finally { if(sample_input_stream!=null) sample_input_stream.close(); if(inpt_smpl!=null) inpt_smpl.close(); } } }
Output:
int read()
Explanation: This is a method defined in java BufferedInputStream, which is used for reading the next byte of already present data from the input stream and doesn’t have any return type.
Example #5
This program illustrates the int read () method of the BufferedInputStream class.
Code:
import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class Java_Input_Buffer_Ex { public static void main(String[] args) throws Exception{ BufferedInputStream inpt_smpl = null; FileInputStream sample_input_stream = null; try { sample_input_stream = new FileInputStream("C:\\Users\\adutta\\anu_test.txt"); inpt_smpl = new BufferedInputStream(sample_input_stream); while(inpt_smpl.available()>0) { char chr_a = (char)inpt_smpl.read(); System.out.println("character_val: "+chr_a); } } catch(Exception e) { e.printStackTrace(); } finally { if(sample_input_stream!=null) sample_input_stream.close(); if(inpt_smpl!=null) inpt_smpl.close(); } } }
Output:
int read(byte[] b, int off, int len)
Explanation: Given is an offset based on which one input buffer will get created, and then that input stream will be put as an input for the read () method of the present stream. The read continues until the final value becomes true.
Example #6
This program illustrates the int read (byte[]b, int off, int len) method of the BufferedInputStream class.
Code:
import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class Java_Input_Buffer_Ex { public static void main(String[] args) throws Exception{ BufferedInputStream inpt_smpl = null; FileInputStream sample_input_stream = null; try { sample_input_stream = new FileInputStream("C:\\Users\\adutta\\anu_test.txt"); inpt_smpl = new BufferedInputStream(sample_input_stream); int byte_num = inpt_smpl.available(); byte[] bufr = new byte[byte_num]; inpt_smpl.read(bufr, 4, 8); for (byte z : bufr) { System.out.println((char)z+": " + z); } } catch(Exception e) { e.printStackTrace(); } finally { if(sample_input_stream!=null) sample_input_stream.close(); if(inpt_smpl!=null) inpt_smpl.close(); } } }
Output:
void reset()
Explanation: This method resets the stream to the position where the last input stream with the limit or mark was called lastly on the input stream.
Example #7
This program illustrates the void reset () method of the BufferedInputStream class.
Code:
import java.io.FileInputStream; import java.io.IOException; import java.io.BufferedInputStream; public class Java_Input_Buffer_Ex { public static void main(String[] args) throws Exception{ BufferedInputStream inpt_smpl = null; FileInputStream sample_input_stream = null; try { sample_input_stream = new FileInputStream("C:\\Users\\adutta\\anu_test.txt"); inpt_smpl = new BufferedInputStream(sample_input_stream); System.out.println("Character_val : "+(char)inpt_smpl.read()); System.out.println("Character_val : "+(char)inpt_smpl.read()); System.out.println("Character_val : "+(char)inpt_smpl.read()); System.out.println("Character_val : "+(char)inpt_smpl.read()); System.out.println("Character_val : "+(char)inpt_smpl.read()); inpt_smpl.mark(0); System.out.println("Character_val : "+(char)inpt_smpl.read()); System.out.println("Invoke the reset_mathod for verifying"); System.out.println("character_val: "+(char)inpt_smpl.read()); System.out.println("character_val : "+(char)inpt_smpl.read()); } catch(Exception e) { e.printStackTrace(); } finally { if(sample_input_stream!=null) sample_input_stream.close(); if(inpt_smpl!=null) inpt_smpl.close(); } } }
Output:
long skip(long n)
Explanation: It is a method that is used for skipping some of the desired values from the BufferedInputStream and then to formulate the entire string and its value.
Example #8
This program illustrates the long skip(long n) method of the BufferedInputStream class.
Code:
import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class Java_Input_Buffer_Ex { public static void main(String[] args) throws Exception{ BufferedInputStream inpt_smpl = null; FileInputStream sample_input_stream = null; try { sample_input_stream = new FileInputStream("C:\\Users\\adutta\\anu_test.txt"); inpt_smpl = new BufferedInputStream(sample_input_stream); while(inpt_smpl.available()>0) { inpt_smpl.skip(3); char p = (char)inpt_smpl.read(); System.out.print(" " + p); } } catch(Exception e) { e.printStackTrace(); } finally { if(sample_input_stream!=null) sample_input_stream.close(); if(inpt_smpl!=null) inpt_smpl.close(); } } }
Output:
Conclusion
Java BufferedInputStream is a class that comprises many constructors and methods that will be used for keeping some useful information without much data loss that too internally by just calling the required functions and methods at the time of execution and compilation, which will be used for retaining and modifying the values.
The above is the detailed content of Java BufferedInputStream. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
