Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在按下按钮和选定的行后选中表格单元格中的选定复选框。(表格日期将由数据库填充 - Mysql)请用示例解释我如何做到这一点。
该表TableModel应该有一个保持布尔值的列。getColumnClass()对于列应返回 Boolean.class。然后复选框将显示为DefaultTableCellRenderer。要获得价值,只需使用table.getModel().getValueAt(...)
TableModel
getColumnClass()
DefaultTableCellRenderer
table.getModel().getValueAt(...)
您的复选框应该有一个ItemListener.
ItemListener
在该itemStateChanged()方法中,您在复选框对象上调用该isChecked()方法,它将返回BOOL其check状态的值。
itemStateChanged()
isChecked()
BOOL
check