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();
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 viagetModel()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