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>

You may also like...

9,271 Responses

  1. RobertUnmab表示:

    Misoprostol 200 mg buy online: purchase cytotec – cytotec abortion pill

  2. JimmieTup表示:

    https://ciprofloxacin.cheap/# buy cipro online without prescription

  3. JimmieTup表示:

    https://cytotec.top/# cytotec buy online usa

  4. Тут можно преобрести взломостойкие сейфы для дома сейфы взломостойкие класса

  5. ArmandoDat表示:

    where to buy cipro online: where to buy cipro online – cipro pharmacy

  6. Oh my goodness! a great write-up dude. Thanks a ton Nevertheless I am experiencing issue with ur rss . Do not know why Can not sign up to it. Is there anyone obtaining identical rss problem? Anybody who knows kindly respond. Thnkx

  7. ArmandoDat表示:

    zestril 5 mg india: zestril 2.5 mg – cost of prinivil

  8. RobertUnmab表示:

    cytotec pills buy online: order cytotec online – cytotec buy online usa

  9. Тут можно преобрести взломостойкий сейф для дома взломостойкий сейф

  10. ArmandoDat表示:

    can i get clomid price: can i get cheap clomid no prescription – cost clomid without insurance

  11. Jaimevoink表示:

    how can i get clomid for sale how to buy clomid without prescription where to buy generic clomid

  12. Jaimevoink表示:

    zithromax cost canada zithromax generic cost can you buy zithromax over the counter

  13. Тут можно преобрести сейф взломостойкий купить сейф взломостойкий

  14. RobertUnmab表示:

    zithromax 250 mg: can i buy zithromax over the counter – zithromax buy online no prescription

  15. Jaimevoink表示:

    buy cytotec online buy cytotec buy cytotec online

  16. ArmandoDat表示:

    zithromax over the counter: zithromax prescription in canada – zithromax generic cost

  17. RobertUnmab表示:

    prinivil brand name: lisinopril hctz – generic lisinopril 5 mg

  18. Тут можно преобрести взломостойкий сейф для дома взломостойкие сейфы купить

  19. leaking pipe表示:

    You seem to be very professional in the way you write.,**”‘

  20. JimmieTup表示:

    https://azithromycinus.com/# zithromax 250 mg pill

  21. ArmandoDat表示:

    purchase cipro: ciprofloxacin generic price – buy cipro without rx

  22. ArmandoDat表示:

    cost generic clomid without insurance: how can i get clomid – can i purchase clomid tablets

  23. A motivating discussion is definitely worth comment. I think that you should publish more about this subject matter, it may not be a taboo matter but generally people do not discuss these issues. To the next! Best wishes!

  24. RobertUnmab表示:

    prinivil 40 mg: lisinopril 2.5 mg cost – lisinopril 40 mg discount

  25. Jaimevoink表示:

    can i order clomid pills where buy cheap clomid without prescription where buy clomid without dr prescription

  26. Jaimevoink表示:

    how to get cheap clomid without insurance where can i get generic clomid no prescription where to buy cheap clomid without prescription

  27. Тактичные штаны: идеальный выбор для стильных мужчин, как носить их с другой одеждой.
    Тактичные штаны: удобство и функциональность, которые подчеркнут ваш стиль и индивидуальность.
    Тактичные штаны: секрет успешного образа, который подчеркнет вашу уверенность и статус.
    Сочетание стиля и практичности в тактичных штанах, которые подчеркнут вашу спортивную натуру.
    Советы по выбору тактичных штанов для мужчин, чтобы подчеркнуть свою уникальность и индивидуальность.
    История появления тактичных штанов, которые подчеркнут ваш вкус и качество вашей одежды.
    Сочетание стиля и практичности в тактичных штанах, которые подчеркнут ваш профессионализм и серьезность.
    жіночі тактичні штани багіра жіночі тактичні штани багіра .

  28. Неотразимый стиль современных тактичных штанов, как носить их с другой одеждой.
    Тактичные штаны: удобство и функциональность, которые подчеркнут ваш стиль и индивидуальность.
    Тактичные штаны: секрет успешного образа, который подчеркнет вашу уверенность и статус.
    Тактичные штаны для активного отдыха: важный элемент гардероба, которые подчеркнут вашу спортивную натуру.
    Тактичные штаны: какой фасон выбрать?, чтобы подчеркнуть свою уникальность и индивидуальность.
    История появления тактичных штанов, которые подчеркнут ваш вкус и качество вашей одежды.
    Тактичные штаны: универсальный выбор для различных ситуаций, которые подчеркнут ваш профессионализм и серьезность.
    купити штани мультикам з наколінниками купити штани мультикам з наколінниками .

  29. JimmieTup表示:

    http://clomid.store/# can i purchase generic clomid pills

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。