May 2001
Intermediate to advanced
1088 pages
30h 13m
English
The DocumentBuilder class is the main interface into a DOM parser. You create instances of DocumentBuilder with the DocumentBuilderFactory class.
isNamespaceAware public boolean isNamespaceAware()
Returns true if the parser understands namespaces.
isValidating public boolean isValidating()
Returns true if the parser validates XML documents.
newDocument public Document newDocument()
Creates new DOM document. Use this method for creating a document from scratch rather than parsing a text file.
parse public Document parse(File f) throws SAXException, IOException public Document parse(InputSource source) throws SAXException, IOException public Document parse(InputStream stream) throws SAXException, IOException public ...
Read now
Unlock full access