|
Préférences
Moteurs de recherche
|
|||||||||||||||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.4.2
javax.xml.parsers
|
Constructor Summary | |
protected |
DocumentBuilder()
|
Method Summary | |
abstract DOMImplementation |
getDOMImplementation()
Obtain an instance of a DOMImplementation object. |
abstract boolean |
isNamespaceAware()
Indicates whether or not this parser is configured to understand namespaces. |
abstract boolean |
isValidating()
Indicates whether or not this parser is configured to validate XML documents. |
abstract Document |
newDocument()
Obtain a new instance of a DOM Document object
to build a DOM tree with. |
Document |
parse(File f)
Parse the content of the given file as an XML document and return a new DOM Document object. |
abstract Document |
parse(InputSource is)
Parse the content of the given input source as an XML document and return a new DOM Document object. |
Document |
parse(InputStream is)
Parse the content of the given InputStream as an XML
document and return a new DOM Document object. |
Document |
parse(InputStream is,
String systemId)
Parse the content of the given InputStream as an XML
document and return a new DOM Document object. |
Document |
parse(String uri)
Parse the content of the given URI as an XML document and return a new DOM Document object. |
abstract void |
setEntityResolver(EntityResolver er)
Specify the EntityResolver to be used to resolve
entities present in the XML document to be parsed. |
abstract void |
setErrorHandler(ErrorHandler eh)
Specify the ErrorHandler to be used to report
errors present in the XML document to be parsed. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
protected DocumentBuilder()
Method Detail |
public Document parse(InputStream is) throws SAXException, IOException
InputStream
as an XML
document and return a new DOM Document
object.
is
- InputStream containing the content to be parsed.
IOException
- If any IO errors occur.
SAXException
- If any parse errors occur.
IllegalArgumentException
- If the InputStream is nullDocumentHandler
public Document parse(InputStream is, String systemId) throws SAXException, IOException
InputStream
as an XML
document and return a new DOM Document
object.
is
- InputStream containing the content to be parsed.systemId
- Provide a base for resolving relative URIs.
IOException
- If any IO errors occur.
SAXException
- If any parse errors occur.
IllegalArgumentException
- If the InputStream is null.DocumentHandler
public Document parse(String uri) throws SAXException, IOException
Document
object.
uri
- The location of the content to be parsed.
IOException
- If any IO errors occur.
SAXException
- If any parse errors occur.
IllegalArgumentException
- If the URI is null.DocumentHandler
public Document parse(File f) throws SAXException, IOException
Document
object.
f
- The file containing the XML to parse.
IOException
- If any IO errors occur.
SAXException
- If any parse errors occur.
IllegalArgumentException
- If the file is null.DocumentHandler
public abstract Document parse(InputSource is) throws SAXException, IOException
Document
object.
is
- InputSource containing the content to be parsed.
IOException
- If any IO errors occur.
SAXException
- If any parse errors occur.
IllegalArgumentException
- If the InputSource is null.DocumentHandler
public abstract boolean isNamespaceAware()
public abstract boolean isValidating()
public abstract void setEntityResolver(EntityResolver er)
EntityResolver
to be used to resolve
entities present in the XML document to be parsed. Setting
this to null
will result in the underlying
implementation using it's own default implementation and
behavior.
er
- The EntityResolver
to be used to resolve entities
present in the XML document to be parsed.public abstract void setErrorHandler(ErrorHandler eh)
ErrorHandler
to be used to report
errors present in the XML document to be parsed. Setting
this to null
will result in the underlying
implementation using it's own default implementation and
behavior.
eh
- The ErrorHandler
to be used to report errors
present in the XML document to be parsed.public abstract Document newDocument()
Document
object
to build a DOM tree with. An alternative way to create a DOM
Document object is to use the
getDOMImplementation
method to get a DOM Level 2 DOMImplementation object and then use
DOM Level 2 methods on that object to create a DOM Document object.
public abstract DOMImplementation getDOMImplementation()
DOMImplementation
object.
DOMImplementation
.