StringBufferInputStream 

Introduction

The Java.io.StringBufferInputStream class allows an application to create an input stream in which the bytes read are supplied by the contents of a string. Applications can also read bytes from a byte array by using a ByteArrayInputStream.Only the low eight bits of each character in the string are used by this class.

This class has been deprecated by Oracle and should not be used any more.

Class declaration

Following is the declaration for Java.io.StringBufferInputStream class −

public class StringBufferInputStream
   extends InputStream

Learn Java in-depth with real-world projects through our Java certification course. Enroll and become a certified expert to boost your career.

Field

Following are the fields for Java.io.StringBufferInputStream class −

  • protected String buffer − This is the string from which bytes are read.
  • protected int count − This is the number of valid characters in the input stream buffer.
  • protected int pos − This is the index of the next character to read from the input stream buffer.

Class constructors

Sr.No.Constructor & Description
1StringBufferInputStream(String s)This creates a string input stream to read data from the specified string.

Class methods

Sr.No.Method & Description
1int available()This method returns the number of bytes that can be read from the input stream without blocking.
2int read()This method reads the next byte of data from this input stream.
3int read(byte[] b, int off, int len)This method reads up to len bytes of data from this input stream into an array of bytes.
4void reset()This method resets the input stream to begin reading from the first character of this input stream’s underlying buffer.
5long skip(long n)This method skips n bytes of input from this input stream.

Methods inherited

This class inherits methods from the following classes −

  • Java.io.InputStreams
  • Java.io.Object

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *