-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathReadTextFile.java
41 lines (34 loc) · 1.03 KB
/
ReadTextFile.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
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class ReadTextFile {
/**
* Author: Edwin Torres
* email: [email protected]
*
* Description:
* This simple program reads a text file line by line
* and prints out each line as it reads it.
*/
public static void main(String[] args) {
String fileFullPath = "C:\\Temp\\data.txt";
BufferedReader br = null;
try {
String line;
br = new BufferedReader(new FileReader(fileFullPath));
/** keep reading lines while we still have some */
while ((line = br.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
} //end main()
} //end ReadTextFile class