SAXParserFactory Methods

enables applications to configure and obtain a SAX based parser to parse XML documents

  • Specify features on the underlying org.xml.sax.XMLReader

    get/setFeature( String name, boolean value)
  • Specify whether the underlying org.xml.sax.XMLReader is namespace aware.

    is/setNamespaceAware( boolean awareness)
  • Specify whether the underlying org.xml.sax.XMLReader uses validation.

    is/setValidating( boolean validating)
  • Specify whether the underlying org.xml.sax.XMLReader is XInclude aware.

    is/setXIncludeAware( boolean validating)
  • Creates a new instance of SAXParser.

    SAXParser newSAXParser()