vote up 2 vote down star
1

I parse a big xml document with Sax, I want to stop parsing the document when some condition establish? How to do?

flag

75% accept rate

3 Answers

vote up 5 vote down check

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).

public class MySAXTerminatorException extends SAXException {
    ...
}

public void startElement (String namespaceUri, String localName,
                           String qualifiedName, Attributes attributes)
                        throws SAXException {
    if (someConditionOrOther) {
        throw new MySAXTerminatorException();
    }
    ...
}
link|flag
There any other way? not use exception. – Diablo.Wu Aug 28 at 7:19
Why would you not want to? That's what exceptions are designed for. – Xiong Chiamiov Sep 1 at 20:29
vote up 0 vote down

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).

link|flag
vote up 0 vote down

i tried that and evey thing is ok thank you

Saeb Najim

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.