Java針對XML檔案的操作大集合
XML是工作上常用到的資料交換格式,會需要利用JAVA進行XML資料的新增、修改或刪除,這裡把相關的方法記錄下來。
下述範例會存取在C:\Projects\Javas\中的sample.xml檔,而檔案中已經有以下的內容:
<?xml version="1.0" encoding="utf-8"?> <root> <item> <productID>10001</productID> <productName>產品名稱1</productName> <productPrice>10</productPrice> </item> <item> <productID>10002</productID> <productName>產品名稱2</productName> <productPrice>20</productPrice> </item> <item> <productID>10003</productID> <productName>產品名稱3</productName> <productPrice>30</productPrice> </item> </root>
利用Java存取XML我選用的Library是dom4j,可參考官網的介紹,以下是JAVA存取的程式範例:
package CDIT.stanley; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.util.Iterator; import org.dom4j.io.OutputFormat; import org.dom4j.io.XMLWriter; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.Element; import org.dom4j.io.SAXReader; public class dom4jXMLFullSample { //新增XML Node內容 public static String XMLAppendNode(String xmlFilePath, String productID, String productName, String productPrice){ String appendStatus = "0"; try { SAXReader reader = new SAXReader(); Document document = reader.read(xmlFilePath); Element root = document.getRootElement(); Element item = root.addElement("item"); item.addElement("productID").setText(productID); item.addElement("productName").setText(productName); item.addElement("productPrice").setText(productPrice); OutputFormat format = OutputFormat.createPrettyPrint(); format.setEncoding("utf-8"); XMLWriter writer = new XMLWriter(new FileOutputStream(xmlFilePath),format); writer.write(document); writer.close(); appendStatus = "1"; } catch (DocumentException e) { return appendStatus; } catch (UnsupportedEncodingException e) { return appendStatus; } catch (FileNotFoundException e) { return appendStatus; } catch (IOException e) { return appendStatus; } return appendStatus; } //修改XML Node內容 public static String XMLChangeNodeValue(String xmlFilePath, String productID, String productName, String productPrice){ String updateStatus = "0"; try { SAXReader reader = new SAXReader(); Document document = reader.read(xmlFilePath); Element root = document.getRootElement(); @SuppressWarnings("rawtypes") Iterator it = root.elementIterator(); while (it.hasNext()) { Element element = (Element) it.next(); if(productID.equals(element.elementText("productID"))){ try { element.element("productName").setText(productName); element.element("productPrice").setText(productPrice); OutputFormat format = OutputFormat.createPrettyPrint(); format.setEncoding("utf-8"); XMLWriter writer = new XMLWriter(new FileOutputStream(xmlFilePath),format); writer.write(document); writer.close(); updateStatus = "1"; } catch (IOException e) { return updateStatus; } } } return updateStatus; } catch (DocumentException e) { return updateStatus; } } //刪除XML Node public static String XMLRemoveNode(String xmlFilePath , String productID){ String removeStatus = "0"; try { SAXReader reader = new SAXReader(); Document document = reader.read(xmlFilePath); Element root = document.getRootElement(); @SuppressWarnings("rawtypes") Iterator it = root.elementIterator(); while (it.hasNext()) { Element element = (Element) it.next(); if(productID.equals(element.elementText("productID"))){ try { element.element("item"); element.detach(); OutputFormat format = OutputFormat.createPrettyPrint(); format.setEncoding("utf-8"); XMLWriter writer = new XMLWriter(new FileOutputStream(xmlFilePath),format); writer.write(document); writer.close(); removeStatus = "1"; } catch (IOException e) { return removeStatus; } } } return removeStatus; } catch (DocumentException e) { return removeStatus; } } public static void main (String[] args){ String xmlFilePath = "C:\\Projects\\Javas\\sample.xml"; //新增 XMLAppendNode(xmlFilePath , "10004", "產品名稱4", "40"); //修改 XMLChangeNodeValue (xmlFilePath , "10001", "測試修改", "100"); //刪除 XMLRemoveNode (xmlFilePath , "10002"); } }
上述程式進行完後,會將原本的XML檔變成如下的內容:
<?xml version="1.0" encoding="utf-8"?> <root> <item> <productID>10001</productID> <productName>測試修改</productName> <productPrice>100</productPrice> </item> <item> <productID>10003</productID> <productName>產品名稱3</productName> <productPrice>30</productPrice> </item> <item> <productID>10004</productID> <productName>產品名稱4</productName> <productPrice>40</productPrice> </item> </root>
Здравствуйте!
Как официально приобрести аттестат 11 класса с минимальными затратами времени
gimnaz06.ru/users/ozagifiwa
Привет, друзья!
Заказать документ о получении высшего образования можно в нашей компании в столице.
bx24.avers35.ru/company/personal/user/38/blog/341
Привет, друзья!
Как приобрести аттестат о среднем образовании в Москве и других городах
wp1065308.server-he.de/doku.php?id=luxdiplomru
Поможем вам всегда!.
вывод из запоя цены краснодар вывод из запоя цены краснодар .
вывод из запоя в стационаре вывод из запоя в стационаре .
принудительный вывод из запоя краснодар https://vyvod-iz-zapoya-krasnodar12.ru .
Привет, друзья!
Заказать диплом института
polkasocial.org/read-blog/27296_sekrety-uspeshnoj-pokupki-shkolnogo-attestata-poshagovaya-instrukciya?mode=night
Привет!
Заказать диплом любого университета.
prodiplome.com/kupit-diplom-goznak-bystro-i-nadezhno
You have made some decent points there. I checked on the web for more information about the issue and found most individuals will go along with your views on this web site.
This is a crucial topic—thanks for addressing it.프라그마틱
You need to take part in a contest for one of the highest quality blogs on the web. I most certainly will highly recommend this site!
вывод из запоя в стационаре воронежа vyvod-iz-zapoya-v-stacionare-voronezh.ru .
Привет, друзья!
Купить документ института можно в нашей компании в столице.
castleofdracula.com.ru/forum/index.php
Abortion pills online https://lipitor.guru/# canadian pharmacy lipitor
furosemide
cytotec online https://lipitor.guru/# lipitor 40
lasix 100mg
Having read this I believed it was extremely informative. I appreciate you taking the time and effort to put this short article together. I once again find myself personally spending way too much time both reading and commenting. But so what, it was still worth it!
Здравствуйте!
Легальные способы покупки диплома о среднем полном образовании
ilinks.ru/catalog.phtml?kat=206
Добрый день!
Мы изготавливаем дипломы любой профессии по доступным тарифам.
janews.com.au/modules/newbb/viewtopic.php?topic_id=6875&forum=12&post_id=6875
cost of lisinopril 20 mg: Lisinopril refill online – buy zestoretic online
Добрый день!
Мы изготавливаем дипломы.
bisound.com/forum/showthread.php?p=608566#post608566
It’s hard to come by experienced people about this topic, but you sound like you know what you’re talking about! Thanks
Привет!
Мы изготавливаем дипломы психологов, юристов, экономистов и прочих профессий по приятным ценам.
techhansha.com/diplom-340907vfkpf
Spot on with this write-up, I really think this web site needs much more attention. I’ll probably be back again to read through more, thanks for the information!
Добрый день!
Купить документ о получении высшего образования вы имеете возможность у нас.
mamadona.ru/blogs/hotite_kupit_diplom_o_vysshem_obrazovani
Привет, друзья!
Узнайте стоимость диплома высшего и среднего образования и процесс получения
oruzheika.blogspot.com/2014/05/rossiyskie-granatometnye-vystrely-vog
Будем рады вам помочь!.
Добрый день!
Диплом специалиста
telegra.ph/kupit-diplom-tehnikuma-v-spb-08-22-3
Привет!
Заказать диплом университета.
dv1930.ru/konkurs/vnimanie-novyj-konkurs-ot-dvinovazhya-cvetochnye-radosti-vinogradovskogo-rajona/#comment-519865
tamoxifen 20 mg tablet: buy tamoxifen citrate – tamoxifen buy
как быстро заработать деньги https://kak-zarabotat-dengi11.ru .
Привет, друзья!
Как официально купить аттестат 11 класса с упрощенным обучением в Москве
unifyusnow.org/senate-healthcare-bill-screws-regardless-party/#comment-37850