Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/11/2009, 14:14
Avatar de HackmanC
HackmanC
 
Fecha de Ingreso: enero-2008
Ubicación: Guatemala
Mensajes: 1.817
Antigüedad: 17 años
Puntos: 260
Sonrisa Respuesta: Error en jTable para aplicación CRUD

Hola

Cita:
Iniciado por christmetal Ver Mensaje
java.lang.ArrayIndexOutOfBoundsException: -1
Cita:
Iniciado por FiruzzZ Ver Mensaje
fácil.. te estás pasando de INDEX.. o es negativo.. " -1 " como lo muestra tu exception ..
Cita:
Iniciado por christmetal Ver Mensaje
private void jTable1_SelectedIndexChanged(ListSelectionEvent e){
ListSelectionModel lsm = (ListSelectionModel)e.getSource();
int pos = lsm.getMinSelectionIndex();
this.txthc.setText(jTable1.getValueAt(pos, 0).toString());
http://java.sun.com/javase/6/docs/ap...lectionIndex()
Returns the smallest selected cell index, or -1 if the selection is empty.

Posiblemente tengas que validar que no sea -1.

Saludos,