I want to find out at whih row of JTable the user clicked.
How to do it ?
JTable.rowAtPoint(evt.getPoint());
If you only ever care about listening to selections on the JTable:
jTable.getSelectionModel().addListSelectionListener(new ListSelectionListener() { public void valueChanged(ListSelectionEvent e) { int sel = jTable.getSelectedRow(); } });
This is a collaboratively edited question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
about » faq »
tagged
asked
3 years ago
viewed
6,629 times
active
1 year ago