| Package | Description |
|---|---|
| javax.xml.parsers |
Provides classes allowing the processing of XML documents.
|
| org.xml.sax |
SAX 2.0 r2 prerelease interfaces
|
| org.xml.sax.helpers |
SAX 2.0 r2 prerelease helper interfaces
|
| Modifier and Type | Method and Description |
|---|---|
abstract Document |
DocumentBuilder.parse(InputSource is)
Parse the content of the given input source as an XML document
and return a new DOM
Document object. |
void |
SAXParser.parse(InputSource is,
DefaultHandler dh)
Parse the content given
InputSource
as XML using the specified
DefaultHandler. |
void |
SAXParser.parse(InputSource is,
HandlerBase hb)
Parse the content given
InputSource
as XML using the specified
HandlerBase. |
| Modifier and Type | Method and Description |
|---|---|
InputSource |
HandlerBase.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Deprecated.
Resolve an external entity.
|
InputSource |
EntityResolver.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Allow the application to resolve external entities.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XMLReader.parse(InputSource input)
Parse an XML document.
|
void |
Parser.parse(InputSource source)
Deprecated.
Parse an XML document.
|
| Modifier and Type | Method and Description |
|---|---|
InputSource |
XMLFilterImpl.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Filter an external entity resolution.
|
InputSource |
DefaultHandler.resolveEntity(java.lang.String publicId,
java.lang.String systemId)
Resolve an external entity.
|
| Modifier and Type | Method and Description |
|---|---|
void |
XMLReaderAdapter.parse(InputSource input)
Parse the document.
|
void |
XMLFilterImpl.parse(InputSource input)
Parse a document.
|
void |
ParserAdapter.parse(InputSource input)
Parse an XML document.
|