previous
|
start
|
next
Parsing with Document Type Definitions
If the parser validates the document with a DTD, you can avoid validity checks in your code
You can tell the parser to ignore white space in non-text elements
factory.setValidating(true); factory.setIgnoringElementContentWhitespace(true);
If the parser has access to a DTD, it can fill in defaults for attributes
previous
|
start
|
next