import java.io.FileNotFoundException; import java.io.File; import java.util.Scanner; public class FileBeolvas { public static void beolvas() { try { tryBeolvas(); }catch(FileNotFoundException ex) { System.err.println("A fájl nem található"); } } public static void tryBeolvas() throws FileNotFoundException { File f = new File("adat.txt"); Scanner olvaso = new Scanner(f); while(olvaso.hasNextLine()) { System.out.println(olvaso.nextLine()); } } public static void main(String[] args) { beolvas(); } }