-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputFile.java
More file actions
38 lines (37 loc) · 1009 Bytes
/
Copy pathInputFile.java
File metadata and controls
38 lines (37 loc) · 1009 Bytes
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
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("Could not open "+fname);
throw e;
}catch(Exception e){
try{
in.close();
}catch(IOException e2){
System.out.println("in.close() unsuccessful");
}
throw e;
}finally{
}
}
public String getLine(){
String s;
try{
s = in.readLine();
}catch(IOException e){
throw new RuntimeException("readLine() failed");
}
return s;
}
public void dispose(){
try{
in.close();
System.out.println("dispose() successful");
}catch(IOException e2){
throw new RuntimeException("in.close() failed");
}
}
}