我试图通过替换其中的一些元素来使用DOM修改XML文档,但我得到以下异常:
03-10 10:49:20.943: W/System.err(22584): org.w3c.dom.DOMException
03-10 10:49:20.943: W/System.err(22584): at org.apache.harmony.xml.dom.InnerNodeImpl.insertChildAt(InnerNodeImpl.java:118)
03-10 10:49:20.943: W/System.err(22584): at org.apache.harmony.xml.dom.InnerNodeImpl.appendChild(InnerNodeImpl.java:52)
XML文档具有以下层次结构:
<?xml version="1.0" encoding="UTF-8"?>
<msg>
<header>
<method>Call</method>
</header>
</msg>
我尝试使用header
方法将元素replaceChild()
替换为另一个元素:
doc.replaceChild(header, (Element)doc.getElementsByTagName("header").item(0));
但是我得到了上述异常。所以,我跟踪了Exception以查看它被抛出的位置,这导致我进入org.apache.harmony.xml.dom.InnerNodeImpl
类中的以下行:
public Node removeChild(Node oldChild) throws DOMException {
LeafNodeImpl oldChildImpl = (LeafNodeImpl) oldChild;
if (oldChildImpl.document != document) {
throw new DOMException(DOMException.WRONG_DOCUMENT_ERR, null);
}
if (oldChildImpl.parent != this) {
throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); // This is where the Exception got thrown
}
int index = oldChildImpl.index;
children.remove(index);
oldChildImpl.parent = null;
refreshIndices(index);
return oldChild;
}
这意味着它无法将元素标题识别为文档的子元素,这是不正确的,所以,我在这里缺少什么?!!
供参考,以下是我在此过程中使用的整个方法:
private void forming_and_sending_xml(String message, Element header){
Document doc = null;
try {
doc = loadXMLFromString(message);
} catch (Exception e) {
e.printStackTrace();
}
doc.getDocumentElement().normalize();
doc.replaceChild(header, (Element)doc.getElementsByTagName("header").item(0)); // this is where I got the Exception
}
更新
我改变了替换元素的方法,我使用importNode
将Node添加到文档中然后将替换过程分离到(remove - &gt; add),这使我能够修复所有相关问题到删除过程,现在元素被成功删除,但文档不批准添加新元素,它抛出上面提到的相同的异常。
我的新方法:
private void forming_and_sending_xml(String message, Element header){
Document doc = null;
try {
doc = loadXMLFromString(message);
} catch (Exception e) {
e.printStackTrace();
}
doc.getDocumentElement().normalize();
doc.importNode(header, true);
Element header_holder = (Element)doc.getElementsByTagName("header").item(0);
header_holder.getParentNode().removeChild(header_holder); // this removes the Element from the Doc succeffully
doc.getDocumentElement().appendChild(header); // this is where the Exception is got thrown now
}
答案 0 :(得分:3)
我猜这里有两个错误:
必须将新的<header>
元素导入到现有文档中(如评论中已经详述),
oldChild
节点必须是上下文节点的 immediate 子节点,而不是示例中的孙子节点。取代
doc.replaceChild(header, (Element)doc.getElementsByTagName("header").item(0));
与
doc.getDoumentElement().
replaceChild(doc.importNode(header, true),
(Element)doc.getElementsByTagName("header").item(0));