| Author |
uploading data into JTable
|
Sainath Veepuri
Ranch Hand
Joined: Sep 25, 2003
Posts: 49
|
|
Hi All, Let me introduce to you as Sainath Veepuri. 'am a beginner in JAVA. I found this site interesting, hence 'am posting my doubt. 'am currently using a JTable in my program to show the information of each & every student in the state. For this I have created a class called StudentInfo.java. This class contains the complete information about the student like student name,age,sex,blood group,dob,class,organization,place.... etc (25 fields are there) We get a raw file contaning thousands of student data. eg; ( Student_raw_file : Contains 25,000 students data --> 25 fields for each student. ) name : x, age : 15, sex : m, .... , name : y, age : 15, sex : f, .... etc atc. For this I wrote a parser, which reads the complete information. Every time I find a new student in the file, i create a new StudentInfo() and set name,age,sex .. etc. and finally I place this StudentInfo() object in a vector. So, if there are 25,000 students...then 25,000 vectors containing different StudentInfo() objects would be created in order to display all the 25,000 students info in my JTable. This mechanism worked. But then, it is taking a long time to upload into the JTable. Is there any other mechanism with which I could improve the performance?? Thanks & Regards, Sai :-)
|
 |
Andres Gonzalez
Ranch Hand
Joined: Nov 27, 2001
Posts: 1561
|
|
Welcome to javaranch sai ! this is the servlet forum, you might wanna try posting your question in the swing forum, you'll probably get more answers there.
|
I'm not going to be a Rock Star. I'm going to be a LEGEND! --Freddie Mercury
|
 |
 |
|
|
subject: uploading data into JTable
|
|
|