((DefaultTableModel) table.getModel()).addRow(dataVector)//添加空白行
int count=table.getRowCount()//获得总行数
table.requestFocus()
table.setRowSelectionInterval(count-1, count-1)//最后一行获得焦点
你首先得获取你选择的指定行 (getselectrow()方法),再通过getValueAt(row,column);获取指定行的每一个单元格中的数据,再将你获取的值用insert语句插入到数据库中。PS:数据库交互应该不用我多说的吧~~~欢迎分享,转载请注明来源:内存溢出
评论列表(0条)