| |
11. 11. 1. 顺序输入流 |
|
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.SequenceInputStream;
import java.util.Vector;
public class MainClass {
public static void main(String[] args) throws IOException {
Vector theStreams = new Vector();
for (int i = 0; i < args.length; i++) {
FileInputStream fin = new FileInputStream(args[i]);
theStreams.addElement(fin);
}
InputStream in = new SequenceInputStream(theStreams.elements());
for (int i = in.read(); i != -1; i = in.read()) {
System.out.write(i);
}
}
}
|
|
11. 11. 顺序输入流 | | 11. 11. 1. | 顺序输入流 | | | | 11. 11. 2. | 序列输入输出 | | |
|