i'm a little rusty with java, but here's an example of some code i found with the array logic i added to it:
Code:
ArrayList al = new ArrayList();
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("input.txt")));
String line = "";
while((line = br.readLine()) != null) {
al.add(line);
}