我需要将以下命名空间添加到我的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");
有人可以告诉我,如何解决这个问题。