>让我解释一下我在这里想要实现的目标在我的结果集中有 4 列的数据,然后我需要手动再添加 1 列,它应该包含布尔值 (false)
ResultSet res = DbConnect.tabelDb(sql); // get result set
List expRptColWise = new ArrayList();
for (int i = 1; i <= res.getMetaData().getColumnCount(); i++) {
expRxptColWise.add(false);
}
attendence.tblA.setModel(DbUtils.resultSetToTableModel(res))
我已经尝试了在 stackoverflow.com 中找到的这段代码 这仍然没有对我的 j 表进行任何更改,它只显示 4 列
我怀疑它是否可以使用 DBUtils.resultSetToTableModel
来完成,因为它是实际的TableModel
实现是未知的,相反,你将不得不弄脏手,例如......
try (ResultSet rs = ...) {
DefaultTableModel model = new DefaultTableModel();
ResultSetMetaData rsmd = rs.getMetaData();
for (int col = 0; col < rsmd.getColumnCount(); col++) {
model.addColumn(rsmd.getColumnName(col + 1));
}
model.addColumn("boolean column");
while (rs.next()) {
Vector data = new Vector();
for (int col = 0; col < rsmd.getColumnCount(); col++) {
data.add(rs.getObject(col + 1));
}
data.add(Boolean.FALSE);
model.addRow(data);
}
}
请记住,如果打开资源,则应将其关闭,有关更多详细信息,请参阅"试用资源"语句
DefaultTableModel model = new DefaultTableModel();
ResultSetMetaData rsmd = rs.getMetaData();
for (int col = 0; col < rsmd.getColumnCount(); col++) {
model.addColumn(rsmd.getColumnName(col + 1));
}
model.addColumn("boolean");
while (rs.next()) {
Vector data = new Vector();
for (int col = 0; col < rsmd.getColumnCount(); col++) {//add another Column
data.add(rs.getObject(col + 1));
}
data.add( Boolean.FALSE);
model.addRow(data);
}
JTable newOne=new JTable(model);
JFrame f=new JFrame();
f.add(new JScrollPane( newOne));
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);