int fila = datos.getSelectedRow();
if (fila>=0)
{
String fecha = datos.getValueAt(fila, 1).toString();
//creamos el formato en el que deseamos mostrar la fecha
SimpleDateFormat formatoDelTexto = new SimpleDateFormat("dd/MM/YYYY");
//creamos una variable tipo Date y la ponemos NULL
Date fechaN = null;
try {
//parseamos de String a Date usando el formato
fechaN = formatoDelTexto.parse(fecha);
//seteamos o mostramos la fecha en el JDateChooser
jdt.setDate(fechaN);
} catch (ParseException ex) {
JOptionPane.showMessageDialog(null, ex);
ex.printStackTrace();
}
}
else
{
JOptionPane.showMessageDialog(null, "no selecciono fila");
}