Example usage for Java javax.xml.parsers SAXParser fields, constructors, methods, implement or subclass
The text is from its open source code.
Class> | getClass() Returns the runtime class of this Object . |
Object | getProperty(String name) Returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader . |
org.xml.sax.XMLReader | getXMLReader() Returns the org.xml.sax.XMLReader that is encapsulated by the implementation of this class. |
boolean | isXIncludeAware() Get the XInclude processing mode for this parser. |
void | parse(InputStream is, HandlerBase hb) Parse the content of the given java.io.InputStream instance as XML using the specified org.xml.sax.HandlerBase . |
void | parse(InputStream is, DefaultHandler dh) Parse the content of the given java.io.InputStream instance as XML using the specified org.xml.sax.helpers.DefaultHandler . |
void | parse(String uri, HandlerBase hb) Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specified org.xml.sax.HandlerBase . |
void | parse(String uri, DefaultHandler dh) Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specified org.xml.sax.helpers.DefaultHandler . |
void | parse(File f, HandlerBase hb) Parse the content of the file specified as XML using the specified org.xml.sax.HandlerBase . |
void | parse(File f, DefaultHandler dh) Parse the content of the file specified as XML using the specified org.xml.sax.helpers.DefaultHandler . |
void | parse(InputSource is, HandlerBase hb) Parse the content given org.xml.sax.InputSource as XML using the specified org.xml.sax.HandlerBase . |
void | parse(InputSource is, DefaultHandler dh) Parse the content given org.xml.sax.InputSource as XML using the specified org.xml.sax.helpers.DefaultHandler . |
void | reset() Reset this
|
void | setProperty(String name, Object value) Sets the particular property in the underlying implementation of org.xml.sax.XMLReader . |