Monday, 15 May 2017

What is InputStream Class In Java ?

Class InputStream

All Implemented Interfaces:
Closeable, AutoCloseable

Direct Known Subclasses:
AudioInputStream, ByteArrayInputStream, FileInputStream, FilterInputStream, InputStream, ObjectInputStream, PipedInputStream, SequenceInputStream, StringBufferInputStream

Declaration of InputStream:
public abstract class InputStream
extends Object
implements Closeable

InputStream is an abstract class and superclass of all classes representing an input stream of bytes.

Applications that need to define a subclass of InputStream must always provide a method that returns the next byte of input.

Constructor Summary of InputStream:

Constructor
Description
InputStream()
Default Constructor.

Method Summary of InputStream:

Modifier
Method Name
Description
int
available()
Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next invocation of a method for this input stream.
void
close()
Closes this input stream and releases any system resources associated with the stream.
Void
mark(int readlimit)
Marks the current position in this input stream.
Boolean
markSupported()
Tests if this input stream supports the mark and reset methods.
abstract int
read()
Reads the next byte of data from the input stream.
int
read(byte[] b)
Reads some number of bytes from the input stream and stores them into the buffer array b.
int
read(byte[] b, int off, int len)
Reads up to len bytes of data from the input stream into an array of bytes.
Void
reset()
Repositions this stream to the position at the time the mark method was last called on this input stream.
long
skip(long n)
Skips over and discards n bytes of data from this input stream.

      
Blog Author - Pushkar Khosla,
Software Developer by Profession with 3.0 Yrs of Experience , through this blog i'am sharing my industrial Java Knowledge to entire world. For any question or query any one can comment below or mail me at pushkar.itsitm52@gmail.com.

No comments:

Post a Comment