Java javax.xml.parsers SAXParser fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.parsers SAXParser fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.parsers SAXParser.

The text is from its open source code.

Method

ClassgetClass()
Returns the runtime class of this Object .
ObjectgetProperty(String name)

Returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader .

org.xml.sax.XMLReadergetXMLReader()
Returns the org.xml.sax.XMLReader that is encapsulated by the implementation of this class.
booleanisXIncludeAware()

Get the XInclude processing mode for this parser.

voidparse(InputStream is, HandlerBase hb)

Parse the content of the given java.io.InputStream instance as XML using the specified org.xml.sax.HandlerBase .

voidparse(InputStream is, DefaultHandler dh)
Parse the content of the given java.io.InputStream instance as XML using the specified org.xml.sax.helpers.DefaultHandler .
voidparse(String uri, HandlerBase hb)
Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specified org.xml.sax.HandlerBase .
voidparse(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 .
voidparse(File f, HandlerBase hb)
Parse the content of the file specified as XML using the specified org.xml.sax.HandlerBase .
voidparse(File f, DefaultHandler dh)
Parse the content of the file specified as XML using the specified org.xml.sax.helpers.DefaultHandler .
voidparse(InputSource is, HandlerBase hb)
Parse the content given org.xml.sax.InputSource as XML using the specified org.xml.sax.HandlerBase .
voidparse(InputSource is, DefaultHandler dh)
Parse the content given org.xml.sax.InputSource as XML using the specified org.xml.sax.helpers.DefaultHandler .
voidreset()

Reset this SAXParser to its original configuration.

SAXParser is reset to the same state as when it was created with SAXParserFactory#newSAXParser() .

voidsetProperty(String name, Object value)

Sets the particular property in the underlying implementation of org.xml.sax.XMLReader .