(6.2) GecodeerdBestand: excepties opvangen
Sign in to test your solution.
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Bestandenlezer {
// De main-methode staat in het NetBeans-project in een APART bestand;
// terwille van Dodona knip-en-plak je het hier:
public static void main(String[] args) {
...
}
// Daaronder komt de volledige inhoud van de klasse Bestandenlezer,
// zoals ook in het NetBeans-project:
private String bestandsnaam;
public Bestandenlezer(String naam) {
bestandsnaam = naam;
}
...
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.