/* Richard A. DeVenezia * SUGI 29 - "Greetings from the Edge" * www.devenezia.com/papers */ import java.io.FileInputStream; public class Example9 { private FileInputStream fis; public Example9 (String path) throws Exception { this.fis = new FileInputStream (path); } }