我想使用stax解析将属性添加到现有的xml中。请建议。
下面是我需要提供的snippnet代码。
<un:UtranCell id="RNC17-1-1">
在追加
之后看起来如下<un:UtranCell id="RNC17-1-1" modifier="delete">
下面是我试过的snippnet代码。但我没有添加属性
try {
File fXmlFile = new File("/home/xgeoraj/bcgImportFiles/imports/UtranCell.xml");
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(fXmlFile);
System.out.println("Root element :" + doc.getDocumentElement().getNodeName());
NodeList nList = doc.getElementsByTagName("un:UtranCell");
for (int temp = 0; temp < nList.getLength(); temp++) {
Node nNode = nList.item(temp);
System.out.println("\nCurrent Element :" + nNode.getNodeName());
if (nNode.getNodeType() == Node.ELEMENT_NODE) {
Element eElement = (Element) nNode;
System.out.println("UtranCell id is: " + eElement.getAttribute("id"));
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
下面是我需要添加它的XML文件。
<?xml version="1.0" encoding="UTF-8"?>
<bulkCmConfigDataFile xmlns:un="utranNrm.xsd" xmlns:xn="genericNrm.xsd" xmlns:gn="geranNrm.xsd" xmlns="configData.xsd" xmlns:es="EricssonSpecificAttributes.14.02.xsd">
<fileHeader fileFormatVersion="32.615 V4.5" vendorName="Ericsson"/>
<configData dnPrefix="Undefined">
<xn:SubNetwork id="ONRM_ROOT_MO_R">
<xn:SubNetwork id="RNC17">
<xn:MeContext id="RNC17">
<xn:ManagedElement id="1">
<un:RncFunction id="1">
<un:UtranCell id="RNC17-1-1" modifier="delete">
答案 0 :(得分:0)
通过设置元素,为您检索到的元素添加属性,这是我认为您想要做的。取出if语句。
if (nNode.getNodeType() == Node.ELEMENT_NODE) {
Element eElement = (Element) nNode;
System.out.println("UtranCell id is: " + eElement.getAttribute("id"));
eElement.setAttribute("modifier", "delete"); // <-- This is the added line
}
有关参考,请参阅javadoc for Element。