blob: d4a46fa6a70954f5fee17b36a4d769cb50e81032 (
plain)
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
|
import java.io.*;
import java.nio.file.Files;
import java.nio.charset.Charset;
import java.util.List;
/*
* @author
* Kian Agheli
*
* References:
* https://www.baeldung.com/java-scanner
*
* Date:
* 2024-05-20
*
* Purpose of class:
* Read from a file.
*/
class Reader {
private File file; // A Reader has-a file.
private String contents; // A Reader has-a set of contents.
public Reader(File file) {
this.file = file;
contents = null;
try {
/* Read the contents of the input file. Assume UTF-8.
Files.readAllLines() automatically closes the file. */
List<String> lines = Files.readAllLines(file.toPath(), Charset.forName("UTF-8"));
/* Combine list into one string. */
contents = String.join("\n", lines);
/* On exception, exit. */
} catch (Exception e) {
System.out.println(e.getMessage());
System.exit(-1);
}
}
/**
* @return the contents of the file.
*/
String getContents() {
return contents;
}
}
|