First page
Back
Continue
Last page
Overview
Graphics
Example I: Chaining Streams
try {
DataInputStream input = new DataInputStream(
new BufferedInputStream(
new FileInputStream(args[0])));
} catch (FileNotFoundException fnfe) {
// ...
}