Deleting all the rows in a JTable

前端 未结 12 692
生来不讨喜
生来不讨喜 2020-12-09 02:38

I need to remove all the rows in my JTable.

I have tried both of the following:

/**
 * Removes all the rows in the table
 */
public void clearTable()         


        
12条回答
  •  再見小時候
    2020-12-09 03:32

    We can use DefaultTableModel.setRowCount(int) for this purpose, refering to Java's Documentation:

    public void setRowCount(int rowCount)

    Sets the number of rows in the model. If the new size is greater than the current size, new rows are added to the end of the model If the new size is less than the current size, all rows at index rowCount and greater are discarded.

    This means, we can clear a table like this:

    DefaultTableModel dtm = (DefaultTableModel) jtMyTable.getModel();
    dtm.setRowCount(0);
    

    Now, on "how does java discard those rows?", I believe it just calls some C-like free(void*) ultimately somewhen, or maybe it just removes all references to that memory zone and leaves it for GC to care about, the documentation isn't quite clear regarding how this function works internally.

提交回复
热议问题