I am programming at Netbeans, and I have a jTable in a frame.

In which I load data that occupies a lot of rows, but then i load another table that has a lot less rows.

And when i am running it, and loading the 2nd table, the extra rows that the first table had are still appearing there. And i wish to just see the 2nd table.

I already tried for jTable.removeAll();

link|improve this question
5  
removelAll() removes all components from a container and has nothing to do with JTable and it's data. The solution is to either get the table's TableModel via getModel() and clear the data from it, or give the JTable a new TableModel. But first and foremost, read the JTable tutorial. It's all explained there, and your question suggests that you haven't done this basic step yet. You'll also want to check out the JTable API and that of DefaultTableModel which is the model used for your JTable. – Hovercraft Full Of Eels Feb 3 at 21:22
Excellent, thank you very much! – Ignacio Nimo Feb 3 at 22:18
You're welcome! – Hovercraft Full Of Eels Feb 3 at 22:19
feedback

1 Answer

up vote 1 down vote accepted

JTable uses the Model/View/Controller methodology, which means that the JTable class is both the View and Controller, so you need to either replace the TableModel by using JTable.setModel(newModel) or clear the TableModel by using JTable.getMoel() and clearing the model that way.

See the tutorial on using tables in the Java tutorials.

link|improve this answer
1  
See also A Swing Architecture Overview. – trashgod Feb 4 at 2:41
feedback

Your Answer

 
or
required, but never shown

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