clear jtable rows java

Solutions on MaxInterview for clear jtable rows java by the best coders in the world

showing results for - "clear jtable rows java"
Maja
15 May 2020
1DefaultTableModel model = (DefaultTableModel) table.getModel();
2model.setRowCount(0);
3model.setColumnCount(0);