Skip to content

Instantly share code, notes, and snippets.

@chukitow
Last active January 1, 2016 10:19
Show Gist options
  • Save chukitow/8130288 to your computer and use it in GitHub Desktop.
Save chukitow/8130288 to your computer and use it in GitHub Desktop.
Obtener Elemento de un JTABLE
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