I would recommend using a BufferedReader to read each line and then using String.split("\\s+") to separate each section. You can then evaluate the values on each line in their own respective arrays to your liking.
BufferedReader br = new BufferedReader(new FileReader(//file here));
String line = null;
ArrayList<String> lines = new ArrayList<String>();
while((line = br.readLine()) !=null)
lines.add(line);
for(String s:line) {
String[] parts = s.split("\\s+");
//Do whatever you need to do.
}
Treat others with respect and they will respect you as well. Maybe they will even help you...
Myself and many others on this forum have been very grateful for Norm's helpfulness and desire for you to actually UNDERSTAND the solution to your problem, and I'm not about to let you treat him that poorly. I will, however, still offer my own help.