Package java.io
Class SequenceInputStream
SequenceInputStream(Enumeration stream_list)
SequenceInputStream(InputStream first_stream, InputStream second_stream)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
constructor SequenceInputStream(Enumeration stream_list):
Initializes a newly created SequenceInputStream by remembering the argument, which must be an Enumeration that produces object whose run-time type is InputStream. The input stream that are produced by the enumeration will be read, in order, to provide the bytes to be read from this SequenceInputStream. After each input stream from the enumeration is exhausted, it is closed by calling its close method.
constructor SequenceInputStream(InputStream first_stream, InputStream second_stream):
Initializes a newly created SequenceInputStream by remembering the two arguments, which will be read in order, first first_stream and then secound_stream, to provide the bytes to be read from this SequenceInputStream.