where x is as /n (or next line) and F1 represent field 1 and the first line is the first record
F1 will go in Jlist1 F2 will go in JList2...and so on until 7 where F8 will go in Jlist1 again but as record 2
how do i achive this using scanner or buffer reader
Hasnain S
Greenhorn
Joined: Jul 18, 2006
Posts: 17
posted
0
here is the scanner code but it is not correct
in2 is the input stream
the xxxxModel represent the JList Models, which will add the field to the Jlist
Item is a class i made in which get and set methods for 7 variables are defined ----**************----------- Scanner scan = new Scanner(in2); scan.useDelimiter(",");
The soul is dyed the color of its thoughts. Think only on those things that are in line with your principles and can bear the light of day. The content of your character is your choice. Day by day, what you do is who you become. Your integrity is your destiny - it is the light that guides your way. - Heraclitus
if the record is of fixed width (seven elements, then a newline symbol in your example), then just read seven elements and add them in the corresponding list and then drop the 8th element and start all over.
perhaps adding a scan.next() as last statement in the loop is good enough ?