1 | The constructor of SequenceInputStream takes a pair of InputStreams and concatenates them together: |
2 |
SequenceInputStream in =
|
3 | Alternatively, SequenceInputStream takes a Java Enumeration type: |
4 |
SequenceInputStream in =
|
5 | where args is an array of command-line arguments and FileListEnumerator is a class that implements the Enumeration interface. |