Código java:
Ver original
public void parsearTxt() { try{ if(file.exists()){ while(entrada.readLine()!= null){ b.addLibro(isbn, titulo, autor); } } }catch (FileNotFoundException ex) { ex.printStackTrace(); System.out.println("ERROoooR: no hay fichero"); } catch (IOException ex) {ex.printStackTrace(); System.out.println("ERROR: No se ha podido cargar1"); } }
gracias por las posibles soluciones