我将以下肥皂响应作为样本:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:mycompany:Service:2" xmlns:urn1="urn:mycompany:Customer:2">
<soapenv:Header />
<soapenv:Body>
<urn:GetResponse>
<urn:StatusCode>002</urn:StatusCode>
<urn:StatusMessage>Pass</urn:StatusMessage>
<urn:CustomerAffiliations>
<urn:CustomerAffiliation>
<urn:CustomerID>II39642</urn:CustomerID>
<urn:CustomerContactDetails>
<ns3:Channel xmlns:ns3="urn:mycompany:Customer:2">Business Phone</ns3:Channel>
<ns3:Value xmlns:ns3="urn:mycompany:Customer:2">5553647</ns3:Value>
</urn:CustomerContactDetails>
</urn:CustomerAffiliation>
</urn:CustomerAffiliations>
</urn:GetResponse>
</soapenv:Body>
</soapenv:Envelope>
urn:mycompany:Customer:2
已作为urn1
添加到soapenv:Envelope
,但在ns3:Channel
和ns3:Value
中重复。
要求是清理xml内容,以便在子元素中使用soapenv:Envelope
中声明的正确名称空间。
Java中有没有办法清理/规范化这个xml内容并使用正确的名称空间使用和重复删除?
答案 0 :(得分:0)
以下代码将替换&#34;重复&#34;名称空间仅包含元素的继承版本(属性也可以有自己的名称空间)....
请注意,这有一些可怕的时间复杂性,因此对于较大的XML文档,这可能会非常糟糕......所以不要在深层嵌套或大于几百个元素的文档中使用它...在某些时候,时间复杂性会咬你。
另一方面,对于像SOAP示例这样的小数据包,它将绰绰有余......
private static final Namespace findFirst(List<Namespace> namespaces, String uri) {
for (Namespace ns : namespaces) {
if (ns.getURI().equals(uri)) {
return ns;
}
}
return null;
}
public static final void dedupElementNamespaces(Element node) {
List<Namespace> created = node.getNamespacesIntroduced();
if (!created.isEmpty()) {
// check anything new against other stuff...
List<Namespace> inherited = node.getNamespacesInherited();
// check out element against previous declarations....
if (node.getNamespace().getPrefix() != "") {
// never swap defaulted namespaces to anything with a prefix.
Namespace ens = node.getNamespace();
Namespace use = findFirst(inherited, node.getNamespaceURI());
if (use != null && use != ens) {
node.setNamespace(use);
}
}
}
for (Element e : node.getChildren()) {
dedupElementNamespaces(e);
}
}
您可以通过以下方式拨打电话:
dedupElementNamespaces(doc.getRootElement());
方法node.getNamespacesIntroduced()
和node.getNamespacesInherited()
通过扫描XML层次结构动态地计算列表...因此它们的性能取决于嵌套的深度。见https://github.com/hunterhacker/jdom/blob/master/core/src/java/org/jdom2/Element.java#L1753