|
Enable/disable validation of input XML document via DOM-builder |
|
|
Validation is a process of checking the source XML document to
correspond to the DOCTYPE it referes. If the document corresponds to
its doc-type it is calles valid, otherwise the document is invalid.
In order to tell the SAX to check the document for validity a correspodning
property of DOM-builderfactory should be set to true, like follows:
// create new factory is ordinary way:
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
// specifies that the builder produced by this factory will
// validate documents as they are parsed.
factory.setValidating(true);
// this loader will validate XML-input:
DocumentBuilder loader = factory.newDocumentBuilder();
|
Related Tips
|
Page 1 of 0 ( 0 comments )
You can share your information about this topic using the form below!
Please do not post your questions with this form! Thanks.