This question already has an answer here:
Tell me please is it possible to break the process of parsing? I.e. exit this loop not reaching the end of document and corresponding event "endDocument" ?
|
This question already has an answer here: Tell me please is it possible to break the process of parsing? I.e. exit this loop not reaching the end of document and corresponding event "endDocument" ? |
|||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Throw an exception in the handler and catch it in the code block where you started parsing:
And in your DocumentHandler:
|
|||||
|
|
Simple solution would be to use StAX parsing - instead of SAX. While SAX has push parsing - events are sent to the Handler by the Parsers, StAX is pull parsing, events are given to us through XMLEventReader which can be used similar to an iterator. So, it is easier to implement conditional break to break out of the parsing. |
|||
|
|
|
You have to throw a SAXException. In order to distiguish it from regular errors I would subclass it with my own Exception class |
|||
|
|