|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.xml.parsers.SAXParser
Defines the API that wraps an XMLReader
implementation class. In JAXP 1.0, this class wrapped the
Parser
interface, however this interface was
replaced by the XMLReader
. For ease
of transition, this class continues to support the same name
and interface as well as supporting new methods.
An instance of this class can be obtained from the
SAXParserFactory.newSAXParser()
method.
Once an instance of this class is obtained, XML can be parsed from
a variety of input sources. These input sources are InputStreams,
Files, URLs, and SAX InputSources.
As the content is parsed by the underlying parser, methods of the
given HandlerBase
or the
DefaultHandler
are called.
Implementors of this class which wrap an underlying implementation
can consider using the ParserAdapter
class to initially adapt their SAX1 impelemntation to work under
this revised class.
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.
Constructor Summary | |
protected |
SAXParser()
|
Method Summary | |
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(java.io.InputStream is,
DefaultHandler dh)
Parse the content of the given InputStream
instance as XML using the specified
DefaultHandler . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
protected SAXParser()
Method Detail |
public abstract void parse(java.io.InputStream is, DefaultHandler dh) throws SAXException, java.io.IOException
InputStream
instance as XML using the specified
DefaultHandler
.
is
- InputStream containing the content to be parsed.dh
- The SAX DefaultHandler to use.
java.io.IOException
- If any IO errors occur.
java.lang.IllegalArgumentException
- If the given InputStream is null.
SAXException
- If the underlying parser throws a
SAXException while parsing.DocumentHandler
public abstract void parse(InputSource is, DefaultHandler dh) throws SAXException, java.io.IOException
InputSource
as XML using the specified
DefaultHandler
.
is
- The InputSource containing the content to be parsed.dh
- The SAX DefaultHandler to use.
java.io.IOException
- If any IO errors occur.
java.lang.IllegalArgumentException
- If the InputSource is null.
SAXException
- If the underlying parser throws a
SAXException while parsing.DocumentHandler
public abstract boolean isNamespaceAware()
public abstract boolean isValidating()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |