一、Jtable的点击监听
1.table.getSelectedRow()可以获取选中行的下标
2.table.getValueAt(count,0).toString()获取指定行的某列元素,因为返回的是Object类型,所以需要将它转换为String类型使用
3.table.setSelectionModel().clearSeection()取消选中行
二、代码
table.addMouseListener(new MouseAdapter() { public void mouseClicked(MouseEvent e) { int count=table.getSelectedRow(); String name2=table.getValueAt(count, 0).toString(); new menzhekuxiangxixinxi(name2); table.getSelectionModel().clearSelection(); } });