March 2005
Intermediate to advanced
1254 pages
104h 21m
English
Parser
This interface is part of the SAX1 API and has
been deprecated in favor of the SAX2 XMLReader
interface, which supports XML namespaces.
public interface Parser { // Public Instance Methods void parse(InputSource source) throws SAXException, java.io.IOException; void parse(String systemId) throws SAXException, java.io.IOException; void setDocumentHandler(DocumentHandler handler); void setDTDHandler(DTDHandler handler); void setEntityResolver(EntityResolver resolver); void setErrorHandler(ErrorHandler handler); void setLocale(java.util.Locale locale) throws SAXException; }
org.xml.sax.helpers.XMLReaderAdapter
org.xml.sax.helpers.ParserAdapter.ParserAdapter( )
javax.xml.parsers.SAXParser.getParser( ),
org.xml.sax.helpers.ParserFactory.makeParser( )