I have developed a Java Swing application which consists of JTable. The JTable displays data of text file. The textfile is comma separated. After displaying i am summing up the totals and displaying them in another JTable which can be vertically scrolled. But when the rows in the table are more, then the JTable is not stable when vertically scrolled. The data gets repeated or the file gets corrupted.

enter image description here

enter image description here

link|improve this question

73% accept rate
Can you post the code please ? – Sylvain M Sep 19 '11 at 7:48
feedback

1 Answer

up vote 3 down vote accepted

there is maybe (no code, no hash) some issues with

1) Concurency in Swing,

2) why JTable loads data on Runtime or there un-know concurency between JTables and one TableModel

3) add your data to the DefaultTableModel

4) better would be implements DefaultTableModel for each of JTable separately

more tutorial and examples

link|improve this answer
I also suspected an NPE somewhere during execution ;), but it's difficult to say that without code... :( – Sylvain M Sep 19 '11 at 8:39
+1 good summary. Violating the opaque property is also a candidate. – trashgod Sep 19 '11 at 13:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.