import java.io.*; import java.util.*; class Program01 { public static void readFile() { try { tryReadFile(); }catch(FileNotFoundException e) { System.err.println("A fájl nem található!"); } } public static void tryReadFile() { throws FileNotFoundException { Scanner olvaso = new Scanner(new FileReader("adat.txt")); while(olvaso.hasNextLine()) { System.out.println(olvaso.nextLine()); } } public static void main(String[] argv) { readFile(); } }