SequenceInputStream.close

SequenceInputStream.close

Class Overview | Class Members | This Package | All Packages

Syntax
public void close() throws IOException
Description
Closes this input stream and releases any system resources associated with the stream.

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.

Exceptions
IOException if an I/O error occurs.
Overrides
close in class InputStream