-1

我正在研究 DOM 元素。我可以重命名根节点,但我也想重命名子节点:示例:

<outcomes> to <ul> `
<para>     to <p>

到目前为止:

元素元素 = doc.getDocumentElement();

         // Create an element with the new name
            Element element2 = doc.createElement("topic");

         // Copy the attributes to the new element
            NamedNodeMap attrs = element.getAttributes();
            for (int i=0; i<attrs.getLength(); i++) {
                Attr attr2 = (Attr)doc.importNode(attrs.item(i), true);
                element2.getAttributes().setNamedItem(attr2);
           }

         // Move all the children
            while (element.hasChildNodes()) {
                element2.appendChild(element.getFirstChild());
            }

            // Replace the old node with the new node
            element.getParentNode().replaceChild(element2, element);

:它重命名根节点,但我也想重命名子节点我正在使用Java

是否有任何简单而具体的方法来重命名这些子节点

谢谢

4

1 回答 1

3

用于此的方法位于一种不起眼的位置:Document.renameNode

于 2012-07-30T17:30:51.450 回答