| Package | Description |
|---|---|
| javax.xml.parsers |
Provides classes allowing the processing of XML documents.
|
| org.w3c.dom |
| Modifier and Type | Method and Description |
|---|---|
abstract Document |
DocumentBuilder.newDocument()
Obtain a new instance of a DOM
Document object
to build a DOM tree with. |
Document |
DocumentBuilder.parse(java.io.File f)
Parse the content of the given file as an XML document
and return a new DOM
Document object. |
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. |
Document |
DocumentBuilder.parse(java.io.InputStream is)
Parse the content of the given
InputStream as an XML
document and return a new DOM Document object. |
Document |
DocumentBuilder.parse(java.io.InputStream is,
java.lang.String systemId)
Parse the content of the given
InputStream as an XML
document and return a new DOM Document object. |
Document |
DocumentBuilder.parse(java.lang.String uri)
Parse the content of the given URI as an XML document
and return a new DOM
Document object. |
| Modifier and Type | Method and Description |
|---|---|
Document |
DOMImplementation.createDocument(java.lang.String namespaceURI,
java.lang.String qualifiedName,
DocumentType doctype)
Creates a DOM Document object of the specified type with its document
element.
|
Document |
Node.getOwnerDocument()
The
Document object associated with this node. |