public abstract class SAXParser extends Object
SAXParserFactory.newSAXParser() method.
Once an instance of this class is obtained, XML can be parsed from
an InputStream
As the content is parsed by the underlying parser, methods of the
given DefaultHandler are called.
An implementation of SAXParser is NOT
guaranteed to behave as per the specification if it is used concurrently by
two or more threads. It is recommended to have one instance of the
SAXParser per thread or it is upto the application to
make sure about the use of SAXParser from more than one
thread.
| Modifier | Constructor and Description |
|---|---|
protected |
SAXParser() |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
isNamespaceAware()
Indicates whether or not this parser is configured to
understand namespaces.
|
abstract boolean |
isValidating()
Indicates whether or not this parser is configured to validate
XML documents.
|
abstract void |
parse(InputSource is,
DefaultHandler dh)
Parse the content given
InputSource
as XML using the specified
DefaultHandler. |
abstract void |
parse(InputStream is,
DefaultHandler dh)
Parse the content of the given
InputStream
instance as XML using the specified
DefaultHandler. |
public abstract void parse(InputStream is, DefaultHandler dh) throws SAXException, IOException
InputStream
instance as XML using the specified
DefaultHandler.is - InputStream containing the content to be parsed.dh - The SAX DefaultHandler to use.IOException - If any IO errors occur.IllegalArgumentException - If the given InputStream is null.SAXException - If the underlying parser throws a
SAXException while parsing.public abstract void parse(InputSource is, DefaultHandler dh) throws SAXException, IOException
InputSource
as XML using the specified
DefaultHandler.is - The InputSource containing the content to be parsed.dh - The SAX DefaultHandler to use.IOException - If any IO errors occur.IllegalArgumentException - If the InputSource is null.SAXException - If the underlying parser throws a
SAXException while parsing.DocumentHandlerpublic abstract boolean isNamespaceAware()
public abstract boolean isValidating()
Copyright © 2012 code4tv.com. All Rights Reserved.