-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathInputFile.java
More file actions
64 lines (55 loc) · 1.3 KB
/
InputFile.java
File metadata and controls
64 lines (55 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package exceptions;
/**
* RUN:
* javac exceptions/InputFile.java && java exceptions.InputFile
* OUTPUT:
*
*/
// import java.util.logging.*;
import java.io.*;
public class InputFile {
private BufferedReader in;
public InputFile(String fname) throws Exception
{
try {
in = new BufferedReader(new FileReader(fname));
// . . .
}
catch(FileNotFoundException e) {
System.out.println("Can not open file " + fname);
throw e;
}
catch(Exception e) {
try {
in.close();
}
catch(IOException e2) {
System.out.println("in.close() failure");
}
throw e; // rethrowing here !!!
}
finally {
// DO NOT CLOSE FILE HERE !!!
}
}
public String getLine()
{
String s;
try {
s = in.readLine();
}
catch(IOException e) {
throw new RuntimeException("readLine() failure");
}
return s;
}
public void dispose() {
try {
in.close();
System.out.println("dispose() success");
}
catch(IOException e) {
System.out.println("in.close() failure");
}
}
}