So there are test results in a txt file. (In this format: student id (int), First Name (String), Last Name (String), points (double). One student/line).
I need to make an ArrayList<Student> using the txt file (Student has a student id, first name etc.), . I know how to read the text file and make that in to an arraylist and how to tokenize that (using StringTokenizer) but after that I'm lost. I think I could do something with a couple of hundred for loops but that hardly seems like the best way to go about doing this.
So, err help?