public class Program1 { Scanner scanner = null; public Program1(){ try { scanner = new Scanner(new File("t.txt")); } catch (FileNotFoundException fe){ fe.printStackTrace(); } } public static void main(String[] args) { }}