Last active
January 1, 2016 10:19
-
-
Save chukitow/8130288 to your computer and use it in GitHub Desktop.
Obtener Elemento de un JTABLE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int row = jTable1.getSelectedRow(); | |
String id = (String) jTable1.getModel().getValueAt(row, 0); | |
//System.out.println(id); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment