* 添加根節(jié)點的child
* @param nodeName 節(jié)點名
* @param nodeValue 節(jié)點值
*/
public void addNodeFromRoot(String nodeName, String nodeValue){
Element root = this.document.getRootElement();
Element level1 = root.addElement(nodeName);
level1.addText(nodeValue);
}
/**
* 打開文檔
* @param filePath 文檔路徑
*/
public void openXML(String filePath){
try{
SAXReader saxReader = new SAXReader();
this.document = saxReader.read(filePath);
System.out.println("openXML(String filePath) successful ...");
}catch(Exception e){
System.out.println("openXML() Exception:" + e.getMessage());
}
}
/**
* 保存文檔
*/
public void saveXML(){
try{
XMLWriter output = new XMLWriter(new FileWriter(new File(this.XMLPath)));
output.write(document);
output.close();
System.out.println("saveXML() successful ...");
}catch(Exception e1){
System.out.println("saveXML() Exception:" + e1.getMessage());
}
}
/**
* 保存文檔
* @param toFilePath 保存路徑
*/
public void saveXML(String toFilePath) {
try {
XMLWriter output = new XMLWriter(new FileWriter(new File(toFilePath)));
output.write(document);
output.close();
}
catch (Exception e1) {
System.out.println("saveXML() Exception:" + e1.getMessage());
}
}
/**
* 獲得某個節(jié)點的值
* @param nodeName 節(jié)點名稱
*/
public String getElementValue(String nodeName){
try {
Node node = document.selectSingleNode("http://" + nodeName);
return node.getText();
}
catch (Exception e1) {
System.out.println("getElementValue() Exception:" + e1.getMessage());
return null;
}
}
/**
* 獲得某個節(jié)點的子節(jié)點的值
* @param nodeName
* @param childNodeName
* @return
*/
public String getElementValue(String nodeName, String childNodeName){
try {
Node node = this.document.selectSingleNode("http://" + nodeName + "/" + childNodeName);
return node.getText();
}
catch (Exception e1) {
System.out.println("getElementValue() Exception:" + e1.getMessage());
return null;
}
}
/**
* 設(shè)置一個節(jié)點的text
* @param nodeName 節(jié)點名
* @param nodeValue 節(jié)點值
*/
public void setElementValue(String nodeName, String nodeValue){
try{
Node node = this.document.selectSingleNode("http://" + nodeName);
node.setText(nodeValue);
}catch(Exception e1){
System.out.println("setElementValue() Exception:" + e1.getMessage());
}
}
/**
* 設(shè)置一個節(jié)點值
* @param nodeName 父節(jié)點名
* @param childNodeName 節(jié)點名
* @param nodeValue 節(jié)點值
*/
相關(guān)推薦:北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |