我可以在我的方法中添加哪些行代码,只会修改标记名“location”,因为它包含名为“address?”的节点下的特定信息。因此,如果我更新“颜色”或“大小”,那么我可以告诉nodeList:“仅当它在”地址中包含123 Main Street时才更改这些值。“我尝试了所有类型的”等于“注意:我创建了我使用object.getAddress作为我要检查的变量的对象。 XML有50个条目:
<location>
<address>123 Main Street</address>
<color>red</color>
<size>large</size>
</location>
public void changeValue(Document doc, String oldValue, String NewValue) throws Exception {
Element root = doc.getDocumentElement();
NodeList childNodes = root.getElementsByTagName("location");
for (int i = 0; i < childNodes.getLength(); i++) {
NodeList subChildNodes = childNodes.item(i).getChildNodes();
for (int j = 0; j < subChildNodes.getLength(); j++) {
try {
if (subChildNodes.item(j).getTextContent().equals(oldValue)) {
subChildNodes.item(j).setTextContent(NewValue);
}
} catch (Exception e) {
}
}
}
File file = new File("XMLDatabase.xml");
save(file, doc);
}
答案 0 :(得分:0)
我希望这有帮助!
for (int i = 0; i < childNodes.getLength(); i++) {
NodeList subChildNodes = childNodes.item(i).getChildNodes();
for (int j = 0; j < subChildNodes.getLength(); j++) {
try {
if (subChildNodes.item(j).getTextContent().equals("123 Main Street")) {
int temp=j;
subChildNodes.item(temp).setTextContent("value you want to set");
subChildNodes.item(temp+2).setTextContent("value you want to set");
subChildNodes.item(temp+4).setTextContent("value you want to set");
}
} catch (Exception e) {
}
}
}