now it reads a file, to have a List<String> from a file.
This commit is contained in:
parent
02eb42c4aa
commit
68ade68d4e
1 changed files with 26 additions and 0 deletions
|
@ -1,14 +1,25 @@
|
|||
package com.hashbangbash.trie;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
import java.io.DataInputStream;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.BufferedReader;
|
||||
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
|
||||
public class App {
|
||||
public static void main(String[] args) {
|
||||
FileInputStream fis;
|
||||
DataInputStream in;
|
||||
BufferedReader br;
|
||||
|
||||
String content;
|
||||
List<String> contentList;
|
||||
|
||||
for (String arg : args) {
|
||||
try {
|
||||
|
@ -20,6 +31,21 @@ public class App {
|
|||
System.out.printf("ERROR: [%s] %s\n", arg, t);
|
||||
continue;
|
||||
}
|
||||
|
||||
in = new DataInputStream(fis);
|
||||
br = new BufferedReader(new InputStreamReader(in));
|
||||
contentList = new ArrayList<String>();
|
||||
|
||||
try {
|
||||
while ((content = br.readLine()) != null) {
|
||||
contentList.add(content);
|
||||
}
|
||||
} catch (IOException ex) {
|
||||
System.out.printf("ERROR: [%s] - %s\n", arg, ex);
|
||||
continue;
|
||||
}
|
||||
|
||||
System.out.println(contentList.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue