Home >Java >javaTutorial >How to Parse XML Files Ignoring External DTD References in Java?
Ignoring DTD References in DocumentBuilder.parse
When parsing an XML file that references an external DTD (Document Type Definition), you may encounter errors if the DTD is not available or if you do not wish to validate against it. To parse the file while ignoring DTD references, follow these steps:
Solution:
Configure the DocumentBuilderFactory to disable DTD validation:
<code class="java">DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); // Disable validation dbf.setValidating(false); // Disable namespace awareness (optional) dbf.setNamespaceAware(false); // Disable specific features that load DTDs dbf.setFeature("http://xml.org/sax/features/namespaces", false); dbf.setFeature("http://xml.org/sax/features/validation", false); dbf.setFeature("http://apache.org/xml/features/nonvalidating/load-dtd-grammar", false); dbf.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);</code>
Once the DocumentBuilderFactory is configured, you can proceed with creating a DocumentBuilder and parsing the file:
<code class="java">DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = db.parse(f);</code>
By disabling DTD validation and related features, the parser will ignore references to external DTDs and proceed with parsing the XML file without raising an error. It's important to note that this solution may not be suitable for all scenarios, such as when you rely on the DTD for data validation.
The above is the detailed content of How to Parse XML Files Ignoring External DTD References in Java?. For more information, please follow other related articles on the PHP Chinese website!