|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--org.xml.sax.helpers.XMLReaderAdapter
| Constructor Summary | |
XMLReaderAdapter()
|
|
XMLReaderAdapter(XMLReader)
|
|
| Method Summary | |
void |
characters(char[],
int,
int)
|
void |
endDocument()
|
void |
endElement(String,
String,
String)
|
void |
endPrefixMapping(String)
|
void |
ignorableWhitespace(char[],
int,
int)
|
void |
parse(InputSource)
Parse an XML document. |
void |
parse(String)
Parse an XML document from a system identifier (URI). |
void |
processingInstruction(String,
String)
|
void |
setDocumentHandler(DocumentHandler)
Allow an application to register a document event handler. |
void |
setDocumentLocator(Locator)
|
void |
setDTDHandler(DTDHandler)
Allow an application to register a DTD event handler. |
void |
setEntityResolver(EntityResolver)
Allow an application to register a custom entity resolver. |
void |
setErrorHandler(ErrorHandler)
Allow an application to register an error event handler. |
void |
setLocale(Locale)
Allow an application to request a locale for errors and warnings. |
void |
skippedEntity(String)
|
void |
startDocument()
|
void |
startElement(String,
String,
String,
Attributes)
|
void |
startPrefixMapping(String,
String)
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public XMLReaderAdapter()
throws SAXException
public XMLReaderAdapter(XMLReader)
| Method Detail |
public void setLocale(Locale)
throws SAXException
ParserSAX parsers are not required to provide localisation for errors and warnings; if they cannot support the requested locale, however, they must throw a SAX exception. Applications may not request a locale change in the middle of a parse.
setLocale in interface Parser - A Java Locale object.
SAXException - Throws an exception
(using the previous or default locale) if the
requested locale is not supported.SAXException,
SAXParseExceptionpublic void setEntityResolver(EntityResolver)
ParserIf the application does not register an entity resolver, the SAX parser will resolve system identifiers and open connections to entities itself (this is the default behaviour implemented in HandlerBase).
Applications may register a new or different entity resolver in the middle of a parse, and the SAX parser must begin using the new resolver immediately.
setEntityResolver in interface Parser - The object for resolving entities.EntityResolver,
HandlerBasepublic void setDTDHandler(DTDHandler)
ParserIf the application does not register a DTD handler, all DTD events reported by the SAX parser will be silently ignored (this is the default behaviour implemented by HandlerBase).
Applications may register a new or different handler in the middle of a parse, and the SAX parser must begin using the new handler immediately.
setDTDHandler in interface Parser - The DTD handler.DTDHandler,
HandlerBasepublic void setDocumentHandler(DocumentHandler)
ParserIf the application does not register a document handler, all document events reported by the SAX parser will be silently ignored (this is the default behaviour implemented by HandlerBase).
Applications may register a new or different handler in the middle of a parse, and the SAX parser must begin using the new handler immediately.
setDocumentHandler in interface Parser - The document handler.DocumentHandler,
HandlerBasepublic void setErrorHandler(ErrorHandler)
ParserIf the application does not register an error event handler, all error events reported by the SAX parser will be silently ignored, except for fatalError, which will throw a SAXException (this is the default behaviour implemented by HandlerBase).
Applications may register a new or different handler in the middle of a parse, and the SAX parser must begin using the new handler immediately.
setErrorHandler in interface Parser - The error handler.ErrorHandler,
SAXException,
HandlerBase
public void parse(String)
throws IOException,
SAXException
ParserThis method is a shortcut for the common case of reading a document from a system identifier. It is the exact equivalent of the following:
parse(new InputSource(systemId));
If the system identifier is a URL, it must be fully resolved by the application before it is passed to the parser.
parse in interface Parser - The system identifier (URI).
IOException - An IO exception from the parser,
possibly from a byte stream or character stream
supplied by the application.
SAXException - Any SAX exception, possibly
wrapping another exception.Parser.parse(org.xml.sax.InputSource)
public void parse(InputSource)
throws IOException,
SAXException
ParserThe application can use this method to instruct the SAX parser to begin parsing an XML document from any valid input source (a character stream, a byte stream, or a URI).
Applications may not invoke this method while a parse is in progress (they should create a new Parser instead for each additional XML document). Once a parse is complete, an application may reuse the same Parser object, possibly with a different input source.
parse in interface Parser - The input source for the top-level of the
XML document.
IOException - An IO exception from the parser,
possibly from a byte stream or character stream
supplied by the application.
SAXException - Any SAX exception, possibly
wrapping another exception.InputSource,
Parser.parse(java.lang.String),
Parser.setEntityResolver(org.xml.sax.EntityResolver),
Parser.setDTDHandler(org.xml.sax.DTDHandler),
Parser.setDocumentHandler(org.xml.sax.DocumentHandler),
Parser.setErrorHandler(org.xml.sax.ErrorHandler)public void setDocumentLocator(Locator)
setDocumentLocator in interface ContentHandler
public void startDocument()
throws SAXException
startDocument in interface ContentHandlerSAXException
public void endDocument()
throws SAXException
endDocument in interface ContentHandlerSAXException
public void startPrefixMapping(String,
String)
startPrefixMapping in interface ContentHandlerpublic void endPrefixMapping(String)
endPrefixMapping in interface ContentHandler
public void startElement(String,
String,
String,
Attributes)
throws SAXException
startElement in interface ContentHandlerSAXException
public void endElement(String,
String,
String)
throws SAXException
endElement in interface ContentHandlerSAXException
public void characters(char[],
int,
int)
throws SAXException
characters in interface ContentHandlerSAXException
public void ignorableWhitespace(char[],
int,
int)
throws SAXException
ignorableWhitespace in interface ContentHandlerSAXException
public void processingInstruction(String,
String)
throws SAXException
processingInstruction in interface ContentHandlerSAXException
public void skippedEntity(String)
throws SAXException
skippedEntity in interface ContentHandlerSAXException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||