3

我正在尝试使用 Xerces-J 动态生成 XML 模式并收到以下错误,感谢有关它的任何帮助。

DocumentBuilderFactory dbfac = DocumentBuilderFactory.newInstance();
dbfac.setNamespaceAware(true);

DocumentBuilder docBuilder = dbfac.newDocumentBuilder();
Document doc = docBuilder.newDocument();

Element schema = doc.createElement("xs:schema");           
schema.setAttribute("xmlns:xs", "http://www.w3.org/2001/XMLSchema");
doc.appendChild(schema);

Element e = doc.createElement("xs:element");            
e.setAttribute("name", "test");
e.setAttribute("type", "xs:string");

schema.appendChild(e);

TransformerFactory transfac = TransformerFactory.newInstance();
Transformer trans = transfac.newTransformer();
trans.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "no");
trans.setOutputProperty(OutputKeys.INDENT, "yes");

//create string from xml tree
StringWriter sw = new StringWriter();
StreamResult result = new StreamResult(sw);
DOMSource source = new DOMSource(doc);

trans.transform(source, result);
String xmlString = sw.toString();

System.out.println(xmlString);

SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);

Schema schema1 = schemaFactory.newSchema(source);

Output is

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="test" type="xs:string"/>
</xs:schema>

org.xml.sax.SAXParseException:s4s-elt-schema-ns:元素“xs:schema”的命名空间必须来自模式命名空间“http://www.w3.org/2001/XMLSchema”。

4

2 回答 2

2

在构建 DOM 时,您不会将命名空间指定为属性。相反,使用createElement()带有两个参数的版本:第一个是命名空间 URI,第二个是元素的限定名称。

另请注意,限定名称的前缀将自动与命名空间 URI 匹配。如果你愿意,你可以完全消除前缀,序列化器会做正确的事情(要么创建一个xmlns没有前缀的属性,要么生成一个前缀)。

于 2013-01-23T21:40:32.910 回答
0

我遇到了类似的问题并找到了Apache Commons XMLSchema

于 2015-08-02T08:10:37.253 回答