@Test
public void testDOMLevel1Validation() throws Exception {
SchemaFactory fact = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
Schema schema = fact.newSchema(new StreamSource(new StringReader(XSD)));
DocumentBuilderFactory docfact = DocumentBuilderFactory.newInstance();
docfact.setNamespaceAware(true);
Document doc = docfact.newDocumentBuilder().newDocument();
doc.appendChild(doc.createElement("root"));
try {
schema.newValidator().validate(new DOMSource(doc));
} catch (SAXParseException e) {
Assert.fail("Validation failed: " + e.getMessage());
}
}
Bug6531160.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:openjdk-jdk10
作者:
评论列表
文章目录