-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathFileLoader.java
58 lines (52 loc) · 1.19 KB
/
FileLoader.java
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
/************************************************************************
*** ***
*** File Reader - for use in PrintMethod.java ***
*** (fberg) ***
*** ***
************************************************************************/
import java.io.*;
import java.util.*;
public class FileLoader
{
private BufferedReader in;
private String line;
public FileLoader(String fileName)
{
try
{
in = new BufferedReader(new FileReader(fileName));
line = in.readLine();
}
catch(IOException e)
{
throw new RuntimeException(e);
}
}
public boolean hasMoreLines()
{
return line != null;
}
public String readLine()
{
try
{
String toReturn = line;
line = in.readLine();
return toReturn;
}
catch(IOException e)
{
throw new RuntimeException(e);
}
}
public void close()
{
try
{
in.close();
}
catch(IOException e)
{
throw new RuntimeException(e); }
}
}