Thread: Java Newbie
View Single Post
Old 09-07-2005, 12:49 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,446
sde is on a distinguished road
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);
}
__________________
Mike
sde is offline   Reply With Quote