使用以下 XML:
<parent>
<child>Stuff</child>
<child>Stuff</child>
</parent>
使用 XPath 我查询子元素,并根据某些条件,我想在其中一些元素之上附加一个额外的父级别:
<parent>
<extraParent>
<child>Stuff</child>
</extraParent>
<child>Stuff</child>
</parent>
最好的方法是什么?
我在考虑以下几点:
Nodes childNodes = parent.query("child");
for (int i = 0; i < childNodes.size(); i++) {
Element currentChild = (Element) childNodes.get(i);
if (someCondition) {
ParentNode parent = currentChild.getParent();
currentChild.detach();
Element extraParent = new Element("extraParent");
extraParent.appendChild(currentChild);
parent.appendChild(extraParent);
}
}
但我想保留订单。可能这可以使用parent.insertChild(child, position)
?
编辑:我认为以下方法可行,但我很好奇是否有人有更好的方法:
Elements childElements = parent.getChildElements();
for (int i = 0; i < childElements.size(); i++) {
Element currentChild = childElements.get(i);
if (someCondition) {
ParentNode parent = currentChild.getParent();
currentChild.detach();
Element extraParent = new Element("extraParent");
extraParent.appendChild(currentChild);
parent.insertChild(extraParent,i);
}
}
编辑2:这可能更好,因为它允许您将其他元素与您不感兴趣的子元素混合:
Nodes childNodes = parent.query("child");
for (int i = 0; i < childNodes.size(); i++) {
Element currentChild = (Element) childNodes.get(i);
if (someCondition) {
ParentNode parent = currentChild.getParent();
int currentIndex = parent.indexOf(currentChild);
currentChild.detach();
Element extraParent = new Element("extraParent");
extraParent.appendChild(currentChild);
parent.insertChild(extraParent,currentIndex);
}
}