Uses of Class
org.xml.sax.HandlerBase
Package | Description |
---|---|
javax.xml.parsers |
Provides the classes for processing XML documents with a SAX (Simple API for XML)
parser or a DOM (Document Object Model) Document builder.
|
-
Uses of HandlerBase in javax.xml.parsers
Methods in javax.xml.parsers with parameters of type HandlerBase Modifier and Type Method Description void
SAXParser. parse(File f, HandlerBase hb)
Parse the content of the file specified as XML using the specifiedHandlerBase
.void
SAXParser. parse(InputStream is, HandlerBase hb)
Parse the content of the givenInputStream
instance as XML using the specifiedHandlerBase
.void
SAXParser. parse(InputStream is, HandlerBase hb, String systemId)
Parse the content of the givenInputStream
instance as XML using the specifiedHandlerBase
.void
SAXParser. parse(String uri, HandlerBase hb)
Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specifiedHandlerBase
.void
SAXParser. parse(InputSource is, HandlerBase hb)
Parse the content givenInputSource
as XML using the specifiedHandlerBase
.