Sunday, 10 March 2013

InputStream


InputStream

Declaration
public abstract class InputStream
java.lang.Object
|
+--java.io.InputStream
Direct Known Subclasses: ByteArrayInputStream, DataInputStream
Description
This abstract class is the 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.
Since: JDK1.0, CLDC 1.0

Constructors
InputStream()
Methods
int available()
void close()
void mark(int readlimit)
boolean markSupported()
abstract int read()
int read(byte[] b)
int read(byte[] b, int off, int len)
void reset()
long skip(long n)


Methods inherited from class Object
equals(Object), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(),
wait(), wait()




No comments:

Post a Comment