File tree 1 file changed +13
-3
lines changed
1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,27 @@ public static void numbersExceptionHandling(){
34
34
Scanner fileReader = null ;
35
35
try {
36
36
fileReader = new Scanner (file );
37
-
38
37
while (fileReader .hasNext ()){
39
38
double num = fileReader .nextDouble ();
40
39
System .out .println (num );
41
40
}
42
-
43
-
44
41
}catch (FileNotFoundException | InputMismatchException e ){
45
42
e .printStackTrace ();
46
43
}finally {
47
44
fileReader .close ();
48
45
}
49
46
}
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
+ }
50
60
}
You can’t perform that action at this time.
0 commit comments