// // import java.util.Scanner; // import java.io.File; // import java.io.FileNotFoundException; // // class Oppgave2 { // public static void main(String[] args) { // File fil = new File("tekst"); // // try { // Scanner scanner = new Scanner(fil); // } catch { // System.exit(); // } // // System.out.println(scanner.nextLine()); // // } // } import java.util.Scanner; import java.io.File; import java.io.FileNotFoundException; class Oppgave2 { public static void main(String[] args) { File fil = new File("tekst.txt"); Scanner scanner = null; try { scanner = new Scanner(fil); } catch (FileNotFoundException e){ System.out.println(e); System.exit(1); } while (scanner.hasNextLine()){ System.out.println(scanner.nextLine()); } } }