Lets say I have several lines of data in a text file...ex...
Joe Stevens M 40 5 Maya Moore F 39 3 Bo Johnson M 25 4
I want to put all this data into a "payroll" object for later use. If it was just one line I would be done...
String line = in.readLine(); Payroll one = new Payroll(line);
any help appreciated