All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object
|
+----java.io.InputStream
|
+----java.io.SequenceInputStream
s1
, and then from the input
stream s2
.
len
bytes of data from this input stream
into an array of bytes.
public SequenceInputStream(Enumeration e)
InputStream
.
public SequenceInputStream(InputStream s1,
InputStream s2)
s1
, and then from the input
stream s2
.
public int available() throws IOException
public int read() throws IOException
int
in the range 0
to
255
. If no byte is available because the end of the
stream has been reached, the value -1
is returned.
This method blocks until input data is available, the end of the
stream is detected, or an exception is thrown.
The read
method of SequenceInputStream
tries to read one character from the current substream. If it
reaches the end of the stream, it calls the close
method of the current substream and begins reading from the next
substream.
-1
if the end of the
stream is reached.
public int read(byte buf[],
int pos,
int len) throws IOException
len
bytes of data from this input stream
into an array of bytes. This method blocks until at least 1 byte
of input is available. If the first argument is null
,
up to len
bytes are read and discarded.
The read
method of SequenceInputStream
tries to read the data from the current substream. If it fails to
read any characters because the substream has reached the end of
the stream, it calls the close
method of the current
substream and begins reading from the next substream.
public void close() throws IOException
The close
method of SequenceInputStream
calls the close
method of both the substream from
which it is currently reading and the close
method of
all the substreams that it has not yet begun to read from.
All Packages Class Hierarchy This Package Previous Next Index