|
Java™ by example!
|
|
|
How do I combine two input streams?
You can combine two or more inputstreams with the class SequenceInputStream. It allows you to put them next to each other, in sequence:
There are two ways to construct a SequenceInputStream through its two constructors. You could either pass an enumeration of all your inputstreams, or you can pass in two inputstreams. The following example allows you to specify two filenames which will be printed out on the console. Main.java:
(try it out with two small textfiles :)
Further Information
Author of answer: Joris Van den Bogaert
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|