SAX Examples

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Simple Parsing

https://github.com/NovaOrdis/playground/tree/master/java/xml/sax

Location in an XML Document

The SAX parser provide document location information via an org.xml.sax.Locator implementation, injected into the ContentHandler with:

public void setDocumentLocator(Locator locator) {
    ...
}

Full example:

https://github.com/NovaOrdis/playground/tree/master/java/xml/sax-location

DTD and XML Schema Validation

TODO: https://docs.oracle.com/javase/tutorial/jaxp/sax/validation.html