Text File - 2D Array!!!

I need help with this question:

Assume that there is a 慡tudents.data?text file that contains 20 students?records. Each record is a line with the following structure:

Student last name, blank

Student first name, blank

Year of birth, blank

Home form, blank

Math, blank

Set of marks with a blank after each of it

English, blank

Set of marks with a blank after each of it

Science, blank

Set of marks with a blank after each of it

End of line character

You have to write a program that reads information from the file into two-dimensional String array. Each row of the array contains information about one student. Keep in mind that, since the number of marks for each student is different, different rows might have different number of columns.

*Blank just means there's a space.

Please help me

[888 byte] By [D-Roda] at [2007-11-27 4:55:40]
# 1
What part do you need help with?
lethalwirea at 2007-7-12 10:10:40 > top of Java-index,Java Essentials,Java Programming...
# 2
Well, putting the text from the text file into a 2d array basically
D-Roda at 2007-7-12 10:10:40 > top of Java-index,Java Essentials,Java Programming...
# 3
It's a .txt file by the way, if that helps at all
D-Roda at 2007-7-12 10:10:40 > top of Java-index,Java Essentials,Java Programming...
# 4
Read about the Scanner class and using it's methods in order to parse the data you need.Shouldn't be hard at all. Just a quick google search on how to use the "Scanner class in java" should help you.
lethalwirea at 2007-7-12 10:10:40 > top of Java-index,Java Essentials,Java Programming...
# 5
ok I'll try that
D-Roda at 2007-7-12 10:10:40 > top of Java-index,Java Essentials,Java Programming...