我想更新我在 中选择的单元格的值JTable
,它应该反映数据库 ( HSQL
),因为调用了按钮的侦听器。
JButton button = new JButton("VIEW AND EDIT");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int row = table.getSelectedRow();
int column = table.getSelectedColumn();
//(**********************)
System.out.println(row + " : " + column);
table.requestFocus();
}
});
我应该用 s 替换哪段代码*
?
请为我提供示例代码或执行相同操作的过程。
我的表有 4 列,其中 1 列PK
。