JDom讀寫XML(程式碼)
Document doc;
Element root;
public ConfigOperater() {
builder = new SAXBuilder();
try {
doc = builder.build(DataUtil.CONFIG_PATH);
root = doc.getRootElement();
}
catch (IOException ex) {
ex.printStackTrace();
}
catch (JDOMException ex) {
ex.printStackTrace();
}
}
//JDom讀取XML
public void readConfig() {
List allConfigDB = root.getChildren("TargetDB");
for(int i=0; i
Database database = new Database(dbEle.getAttributeValue("dbType"),
dbEle.getAttributeValue("id"),dbEle.getAttributeValue("dbIp"),
Integer.parseInt(dbEle.getAttributeValue("dbPort")),dbEle.getAttributeValue("dbName"),
dbEle.getAttributeValue("dbUser"),dbEle.getAttributeValue("dbPwd"),
dbEle.getAttributeValue("dbServer"),dbEle.getAttributeValue("clientLocale"),
dbEle.getAttributeValue("dbLocale"));
DataUtil.ALL_DB.addElement(database);
}
//DataBase db
}
//JDom寫入XML
public void writeToConfig() {
Element dbEle = new Element("TargetDB");
dbEle.setAttribute("id", DataUtil.curDB.getDbConName());
dbEle.setAttribute("dbType", DataUtil.curDB.getDBType());
dbEle.setAttribute("dbServer", DataUtil.curDB.getDbServer());
dbEle.setAttribute("dbName", DataUtil.curDB.getDbName());
dbEle.setAttribute("dbUser", DataUtil.curDB.getDbUser());
dbEle.setAttribute("dbPwd", DataUtil.curDB.getDbPwd());
dbEle.setAttribute("dbIp", DataUtil.curDB.getDbIp());
dbEle.setAttribute("dbPort", Integer.toString(DataUtil.curDB.getDbPort()));
dbEle.setAttribute("dbLocale", DataUtil.curDB.getDbLocale());
dbEle.setAttribute("clientLocale", DataUtil.curDB.getClientLocale());
root.addContent(dbEle);
try {
XMLOutputter outPutter = new XMLOutputter();
PrintWriter outWriter = new PrintWriter(new BufferedWriter(new FileWriter(DataUtil.CONFIG_PATH)));
outPutter.output(doc, outWriter);
}
catch (java.io.IOException e) {
e.printStackTrace();
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/11049438/viewspace-967520/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 用JDOM讀取XML檔案XML
- 使用jdom解析XMLXML
- jdom解析xml檔案XML
- 有關jdom解析xmlXML
- 用JDOM操作XML檔案XML
- 用JDOM處理XML文件 (轉)XML
- C# 讀寫xmlC#XML
- 讀寫iOS XML檔案iOSXML
- Android的pull讀寫XMLAndroidXML
- 使XML程式設計更簡單---JDOM介紹及程式設計指南 (轉)XML程式設計
- C#基礎系列:Linq to Xml讀寫xmlC#XML
- javascript讀取xml檔案程式碼例項JavaScriptXML
- Python xml.etree.ElementTree讀寫xml檔案例項PythonXML
- 編寫可讀的程式碼
- python xml讀取和寫入PythonXML
- 用C#讀寫XML的方法C#XML
- 使用C#讀寫xml檔案C#XML
- 讀《編寫可讀程式碼的藝術》
- 使用JDOM處理XML資料之PDF篇(二) (轉)XML
- 使用JDOM處理XML資料之PDF篇(一) (轉)XML
- XML 程式設計思想: 研讀XML Hacks(轉)XML程式設計
- python讀寫Excel表格程式碼PythonExcel
- 千萬不要寫程式碼不要讀博
- 編寫易讀的程式碼 (轉)
- nodejs xmlreader 讀寫xml檔案NodeJSXML
- C# - XML讀寫與序列化C#XML
- Dom4j 讀寫XML簡介XML
- dom4j讀寫xml檔案XML
- 如何提高程式碼的可讀性? - 讀《編寫可讀程式碼的藝術》
- 通過JDOM實現XML與String的相互轉換XML
- Java解析XML彙總(DOM/SAX/JDOM/DOM4j/XPath)JavaXML
- 使用JDOM處理XML資料之XSLT篇(二) (轉)XML
- 使用JDOM處理XML資料之XSLT篇(一) (轉)XML
- 編寫可讀程式碼的藝術
- C#讀寫xml檔案應用案例C#XML
- jdom解析中文編碼問題
- C#不使用DataSet操作XML,XmlDocument讀寫xml所有節點及讀取xml節點的資料總結C#XML
- 使用JDom從Java後臺給Flex前端傳遞xml資料JavaFlex前端XML