Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/11/2014, 02:49
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 3 meses
Puntos: 182
Respuesta: Problema con XmlReader

Cita:
Parece como si lo parseara bien, porque vas depurando y salta ninguna excepción ni error
Quizas porque no estas capturando todas las excepciones?

[....]
} catch (SAXException e) {
throw new XmlException("Error al parsear el documento xml: " + e.getMessage(), e);
} catch (IOException e) {
throw new XmlException("Error al parsear el documento xml: " + e.getMessage(), e);
} catch (ParserConfigurationException e) {
throw new XmlException("Error al parsear el documento xml: " + e.getMessage(), e);
} catch (Exception e) {
e.printStackTrace();
}
finally {
try {
is.close();
} catch (IOException e) {
log.warn("No se ha cerrado correctamente el InputStream: " + e.getMessage());
}
}
[...]

Un saludo
__________________
If to err is human, then programmers are the most human of us