Skip to content

Commit e50c31e

Browse files
authored
Update ExceptionHandling.java
1 parent b7e688b commit e50c31e

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

chapter13/ExceptionHandling.java

+13-3
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,27 @@ public static void numbersExceptionHandling(){
3434
Scanner fileReader = null;
3535
try{
3636
fileReader = new Scanner(file);
37-
3837
while(fileReader.hasNext()){
3938
double num = fileReader.nextDouble();
4039
System.out.println(num);
4140
}
42-
43-
4441
}catch(FileNotFoundException | InputMismatchException e){
4542
e.printStackTrace();
4643
}finally{
4744
fileReader.close();
4845
}
4946
}
47+
48+
49+
public static void tryWithResources(){
50+
File file = new File("resources/numbers.txt");
51+
try(Scanner fileReader = new Scanner(file)){
52+
while(fileReader.hasNext()){
53+
double num = fileReader.nextDouble();
54+
System.out.println(num);
55+
}
56+
}catch(FileNotFoundException | InputMismatchException e){
57+
e.printStackTrace();
58+
}
59+
}
5060
}

0 commit comments

Comments
 (0)