本文介绍了如何重命名XML节点名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将现有的XML节点重命名为新名称。我正在使用DOM概念java进行XML解析,我有一组包含相同名称的节点。例如
I want to rename the existing XML node into new name. I am doing XML parsing using DOM concept java, i have set of node which contains same name. for example
<names>
<abc>Apple</abc>
<abc>Ball</abc>
<abc>Cat</abc>
<abc>Doll</abc>
<abc>Elephant</abc>
</names>
我上面的例子中有一组节点包含值。在该示例中,我想要更改节点值(即)
I the above example there is set of nodes contains value. in that example i want to change the node value (ie)
<names>
<name>Apple</name>
<name>Ball</name>
<name>Cat</name>
<name>Doll</name>
<name>Elephant</name>
</names>
这是可以在DOM中做的,我对使用DOM解析概念几乎是新手..谢谢有价值的评论。
is this possible to do in DOM, i am pretty much new to parsing concept using DOM.. Thanks for valuable comments.
推荐答案
与:
public void changeTagName(Document doc, String tag, String fromTag, String toTag) {
NodeList nodes = doc.getElementsByTagName(fromTag);
for (int i = 0; i < nodes.getLength(); i++) {
if (nodes.item(i) instanceof Element) {
Element elem = (Element)nodes.item(i);
doc.renameNode(elem, elem.getNamespaceURI(), toTag);
}
}
}
这篇关于如何重命名XML节点名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!