Do not do this, as HEBERT suggested, you are breaking the connection between your data object and your table model. Bad MVC design.
Ideally, you have access to a data model. Assuming this is a List in myDataList variable
myDataList.clear();
myTable.getModel().fireTableDataChanged();
source
share