SAXParser Methods

wrapper for an org.xml.sax.XMLReader implementation

  • Returns the underlying org.xml.sax.XMLReader.

    XMLReader getXMLReader()
  • Specify properties on the underlying org.xml.sax.XMLReader

    get/setProperty( String name, Object value)
  • Parses the contents indentified by the first parameter using the handler identified by second parameter (optionally specifying a systemId)).

    parse( File f, DefaultHandler dh)
    parse( InputStream is, DefaultHandler dh)
    parse( InputStream is, DefaultHandler dh, String systemId)
    parse( String uri, DefaultHandler dh)