-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileData.java
More file actions
67 lines (55 loc) · 1.04 KB
/
FileData.java
File metadata and controls
67 lines (55 loc) · 1.04 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
65
66
67
import java.io.IOException;
public class FileData
{
private String fileName;
FileData(String file)
{
fileName = file;
}
public int[] readInt() throws IOException
{
int[] aryLines = null;
try
{
ReadFile file = new ReadFile(fileName);
aryLines = file.OpenInt();
}
catch (IOException e)
{
System.out.println(e.getMessage());
}
return aryLines;
}
public int[] readTwoLine() throws IOException
{
int[] aryLines = null;
try
{
ReadFile file = new ReadFile(fileName);
aryLines = file.OpenTwoLine();
}
catch (IOException e)
{
System.out.println(e.getMessage());
}
return aryLines;
}
public static void main(String[] args) throws IOException
{
String filename = "C:\\Users\\Rutter-Felix\\Desktop\\java\\leetcode\\src\\lc\\t.txt";
try
{
ReadFile file = new ReadFile(filename);
int[] aryLines = file.OpenInt();
int i;
for ( i = 0; i < aryLines.length; i++ )
{
System.out.println(aryLines[i]);
}
}
catch (IOException e)
{
System.out.println(e.getMessage());
}
}
}