我需要将以下命名空间添加到我的 XSD 文档中:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="catalog.enterprise.level3.com" attributeFormDefault="unqualified">
当我尝试添加目标命名空间时,它会抱怨 MalformedURIException,我认为这是因为命名空间 URI 中没有 http://。我为此使用XOM 。
Element rootWriter;
rootWriter.addNamespaceDeclaration("tns","catalog.enterprise.level3.com");
有人可以向我建议如何解决这个问题。