for( int i=0;i<10;i++){
if(usuario.equals(matriz[i][0])){
JOptionPane.showMessageDialog(null,"Encontrado");
String n =matriz[1][0];
int ju= Integer.parseInt(n);
int vi= Integer.parseInt(matriz[2][0]);
int ni= Integer.parseInt(matriz[3][0]);
user = new Usuario(usuario,10,vi,ni);
break;
}else{
JOptionPane.showMessageDialog(null,"No Encontrado");
}
}