this.rutaArch = rutaArch;
}
public EstructuraProfesor leer() throws FileNotFoundException, IOException, ClassNotFoundException{
ObjectInputStream lector = new ObjectInputStream(new BufferedInputStream(new FileInputStream(rutaArch)));
EstructuraProfesor est = null;
while (true){
try {
est = (EstructuraProfesor) lector.readObject();
} catch (EOFException ex) {
break;