How to get a DefaultTableModel object's data into a subclass of DefaultTableModel
问题 I have a jTable displaying a simple two column sql table's data and allowing a user to maintain the list. This is my first java program. Have that working such that user can edit the list of data and press save to update. I get the sql data to the jTable's DefaultTableModel from this line of code: paCutAboveTable.SetTableModel((DefaultTableModel) DbUtils.resultSetToTableModel(rs)); I'm guessing DBUtils and resultSets are familiar to people here. I want to add a CheckBox to each row. Looking