求救Swing中JTable事件!!
我想实现在一个表格中,点击表中某一行,就能提取某一行的数据显示到对应的Swing组键中,请问改怎么做啊
----------------解决方案--------------------------------------------------------
添加鼠标监听,
----------------解决方案--------------------------------------------------------
jtable.getSelectionModel().addListSelectionListener(new ListSelectionListener(){
public void valueChanged(ListSelectionEvent e) {
}
});
----------------解决方案--------------------------------------------------------