I parse a big xml document with Sax, I want to stop parsing the document when some condition establish? How to do?
|
|
Create a specialization of a SAXException and throw it (you don't have to create your own specialization but it means you can specifically catch it yourself and treat other SAXExceptions as actual errors).
|
||||
|
|
|
I am not aware of a mechanism to abort SAX parsing other than the exception throwing technique outlined by Tom. An alternative is to switch to using the StAX parser (see pull vs push). |
||
|
|
|
|
i tried that and evey thing is ok thank you Saeb Najim |
||
|
|
