Constructors
Name | Description |
---|---|
SequenceInputStream(Enumeration) | Constructs a new sequence input stream initialized to the specified enumeration of input streams. |
SequenceInputStream(InputStream, InputStream) | Constructs a new sequence input stream initialized to read first from the input stream s1, and then from the input stream s2. |
Methods
Name | Description |
---|---|
available() | Returns the number of bytes available on the current stream. |
close() | Closes this input stream and releases any system resources associated with the stream. |
read() | Reads the next byte of data from this input stream. |
read(byte[], int, int) | Reads up to len bytes of data from this input stream into an array of bytes. |