import java.io.FileInputStream; public class Example9 { private FileInputStream fis; public Example9 (String path) throws Exception { this.fis = new FileInputStream (path); } }