gpt4 book ai didi

java - 在具有命名空间的 Java 中,针对架构的 XML 验证失败

转载 作者:行者123 更新时间:2023-12-01 17:45:25 25 4
gpt4 key购买 nike

我需要编写 Java 代码来根据模式验证 XML。由于某种我不明白的原因,验证失败,出现以下异常:

org.xml.sax.SAXParseException; cvc-elt.1: Cannot find the declaration of element 'root'

架构:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema elementFormDefault="qualified"
targetNamespace="http://www.example.com"
xmlns="http://www.example.com"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="root" type="rootType"/>
<xs:simpleType name="rootType">
<xs:restriction base="xs:integer"/>
</xs:simpleType>
</xs:schema>

XML:

<?xml version="1.0" encoding="UTF-8"?>
<root xmlns="http://www.example.com">1</root>

Java代码:

try (InputStream xmlStream = Main.class.getClassLoader().getResourceAsStream("a.xml");
InputStream xsdStream = Main.class.getClassLoader().getResourceAsStream("a.xsd")) {
DocumentBuilder parser = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document document = parser.parse(xmlStream);
SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
StreamSource schemaFile = new StreamSource(xsdStream);
Schema schema = factory.newSchema(schemaFile);
Validator validator = schema.newValidator();
validator.validate(new DOMSource(document));
}

如果我删除对命名空间“http://www.example.com ”的所有引用,验证就会成功。架构、XML 或代码是否有问题?

最佳答案

您应该在构建器工厂中启用命名空间。

    DocumentBuilderFactory fact = DocumentBuilderFactory.newInstance();
fact.setNamespaceAware(true);
DocumentBuilder parser = fact.newDocumentBuilder();

关于java - 在具有命名空间的 Java 中,针对架构的 XML 验证失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55921120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com