次のように、DTD 参照を含む XML ファイルがあります。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE something SYSTEM "something.dtd">
私は使用していDocumentBuilderFactory
ます:
public static Document validateXMLFile(String xmlFilePath) throws ParserConfigurationException, SAXException, IOException {
DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
domFactory.setValidating(true);
DocumentBuilder builder = domFactory.newDocumentBuilder();
builder.setErrorHandler(new ErrorHandler() {
@Override
public void error(SAXParseException exception) throws SAXException {
// do something more useful in each of these handlers
exception.printStackTrace();
}
@Override
public void fatalError(SAXParseException exception) throws SAXException {
exception.printStackTrace();
}
@Override
public void warning(SAXParseException exception) throws SAXException {
exception.printStackTrace();
}
});
Document doc = builder.parse(xmlFilePath);
return doc;
}
しかし、XML ファイルのパスからではなく、ユーザー定義の場所にある DTD ファイルに対して XML ファイルを検証したいと考えています。
どうやってやるの?
例:
validateXMLFile("/path/to/the/xml_file.xml", "/path/to/the/dtd_file.dtd");