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...

14,118 Responses

  1. GreggRom表示:

    A brief history of sunglasses, from Ancient Rome to Hollywood
    kraken darknet onion

    Sunglasses, or dark glasses, have always guarded against strong sunlight, but is there more to “shades” than we think?

    The pupils of our eyes are delicate and react immediately to strong lights. Protecting them against light — even the brilliance reflected off snow — is important for everyone. Himalayan mountaineers wear goggles for this exact purpose.

    Protection is partly the function of sunglasses. But dark or colored lens glasses have become fashion accessories and personal signature items. Think of the vast and famous collector of sunglasses Elton John, with his pink lensed heart-shaped extravaganzas and many others.

    When did this interest in protecting the eyes begin, and at what point did dark glasses become a social statement as well as physical protection?
    The Roman Emperor Nero is reported as holding polished gemstones to his eyes for sun protection as he watched fighting gladiators.

    We know Canadian far north Copper Inuit and Alaskan Yupik wore snow goggles of many kinds made of antlers or whalebone and with tiny horizontal slits. Wearers looked through these and they were protected against the snow’s brilliant light when hunting. At the same time the very narrow eye holes helped them to focus on their prey.

    In 12th-century China, judges wore sunglasses with smoked quartz lenses to hide their facial expressions — perhaps to retain their dignity or not convey emotions.

  2. Brandonnot表示:

    legit canadian pharmacy: canadian pharmacy prices – canada pharmacy online legit

  3. Brandonnot表示:

    best rated canadian pharmacy: canadian pharmacy in canada – vipps approved canadian online pharmacy

  4. Brandonnot表示:

    my canadian pharmacy review: CanadianMdPharm – canadian drug

  5. Barryanets表示:

    Carrie Underwood slated to perform at Trump’s inauguration
    kraken войти
    Country music star Carrie Underwood is slated to perform “America the Beautiful” at President-elect Donald Trump’s inauguration, according to a copy of the program obtained by CNN and confirmed by a spokesperson for the inaugural committee.

    “I love our country and am honored to have been asked to sing at the Inauguration and to be a small part of this historic event,” Underwood said in a statement to CNN. “I am humbled to answer the call at a time when we must all come together in the spirit of unity and looking to the future.”

    The presidential oath of office will be administered by Supreme Court Chief Justice John Roberts with Justice Brett Kavanaugh expected to administer the oath of office to Vice President-elect JD Vance.

    Trump’s inauguration as the 47th president of the United States will take place on January 20 at the US Capitol.

    Underwood is a big get for Trump’s inauguration, considering Hollywood’s Trump blackout over the course of his political career.

    In his first term and throughout the past three elections, Trump has struggled to garner support from major Hollywood stars. At the Republican National Convention last year, the two biggest stars onstage with Trump were musician Kid Rock and retired WWE wrestler Hulk Hogan – a far cry from a superstar at the height of their career, like Underwood.

    The Grammy-winning artist is as high-profile as you can get in country music, not only with numerous platinum hits, but also with public-facing, mainstream business associations. Underwood is the face of Sunday Night Football and is set to make her debut this March as a judge on ABC’s “American Idol” – the singing competition show that catapulted her to fame when she won in 2005.

    While many NFL fans will likely applaud Underwood for singing at the inauguration, any time a celebrity aligns themselves with Trump, they run the risk of alienating left-leaning fans and Hollywood allies.

    Underwood has kept her politics under wraps over the course of her career. In her statement, she did not mention Trump by name and kept her focus on unifying the country – still, Underwood’s decision to publicly align with Trump is a big statement for any star, particularly one as private as the singer.

    Historically, Hollywood has always been closely associated with the Democratic Party, but country stars have always been an outlier, leaning more conservative. In recent years, as new singers join the genre, country music has gotten to be more progressive. This past election cycle, country stars like Mickey Guyton and Maren Morris stood with Vice President Kamala Harris.

  6. Introducing to you the most prestigious online entertainment address today. Visit now to experience now!

  7. Brandonnot表示:

    best mail order pharmacy canada: canadian pharmacies that deliver to the us – buy canadian drugs

  8. RobertMab表示:

    Почувствуй Азарт Победы прочувствуй восторг успеха: Играй в Казино Онлайн пробуй удачу в онлайн-казино с Минимальным Депозитом с низким порогом входа!

    Мечтаешь о крупных выигрышах о больших призах, но не готов рисковать большими суммами значительными инвестициями? У нас есть отличное решение идеальное предложение! Погрузись в мир азарта в мир волнения и развлечений игровая забава с нашим онлайн-казино, где ты можешь играть на деньги онлайн ставить на деньги в сети с минимальным депозитом минимальным платежом. Забудь о стереотипах забудь клише, что азартные игры азартные развлечения – это только для хайроллеров богачей. Теперь каждый может испытать удачу попробовать судьбу и получить шанс на крупный куш на солидный приз, не выходя из дома не покидая квартиры.

    Почему выбирают нас?

    Минимальный депозит – максимум возможностей: Начни свою игру начни играть с небольшого депозита с минимума и открой для себя мир захватывающих слотов захватывающих игр, карточных игр игр в карты и рулетки игры в рулетку. Это отличный шанс прекрасная возможность протестировать разные игры попробовать разные игры, разработать свою стратегию создать свою стратегию и получить первые победы первые выигрыши без больших вложений без больших трат. Огромный выбор игр: У нас ты найдешь сотни игр огромное количество развлечений на любой вкус на любой вкус и цвет, от классических слотов от традиционных игровых автоматов до современных видеоигр современных игр с потрясающей графикой красивой графикой и увлекательными бонусными раундами захватывающими бонусами. Постоянно добавляются новые игры мы постоянно обновляем ассортимент, чтобы тебе никогда не было скучно чтобы вам никогда не было скучно. Играй на деньги онлайн играйте в онлайн казино в любое время: Наше казино доступно 24/7 всегда с любого устройства любого девайса – компьютера, планшета или смартфона. Ты можешь наслаждаться игрой получать удовольствие от игры в любое удобное время в любое время суток и в любом месте в любом уголке мира, где есть интернет. Безопасность и надежность: Мы используем самые современные технологии шифрования передовые технологии шифрования, чтобы гарантировать безопасность твоих личных данных вашей конфиденциальности и финансовых транзакций финансовых операций. Играй с уверенностью играйте спокойно, зная, что твоя информация ваши данные в надежных руках. Быстрые и удобные выплаты оперативный вывод средств: Мы ценим твое время мы ценим ваше время, поэтому предлагаем различные способы вывода выигрышей различные способы вывода денег, с быстрой обработкой запросов. Щедрые бонусы и акции выгодные бонусы и акции: Начни свою игру начните играть с приятными бонусами приятными подарками, которые увеличат твои шансы на победу ваши возможности выиграть. Мы регулярно проводим акции проводим различные акции и турниры турниры для игроков, чтобы сделать твою игру вашу игру еще более захватывающей более интересной.

    Как начать играть на деньги онлайн с минимальным депозитом?

    Зарегистрируйся на нашем сайте: Процесс регистрации займет всего пару минут будет очень быстрым. Пополни свой счет пополните баланс: Выбери удобный способ оплаты выберите способ пополнения и внеси минимальный депозит внесите небольшую сумму. Выбери игру найдите игру: Просмотри нашу коллекцию ознакомьтесь с нашим ассортиментом и найди свою любимую игру найдите подходящую игру. Начни выигрывать начните выигрывать: Наслаждайся игрой получайте удовольствие и получай удовольствие от процесса!

    Не откладывай свою удачу на потом! Не ждите завтра!

    Присоединяйся к нашему онлайн-казино уже сегодня зарегистрируйтесь прямо сейчас и убедись сам убедитесь сами, что играть на деньги онлайн играть на реальные деньги может быть не только захватывающе не только увлекательно, но и доступно каждому с минимальным депозитом доступно каждому. Испытай свою удачу проверьте свою фортуну, получи незабываемые эмоции почувствуйте восторг и, возможно, сорви крупный куш выиграйте крупную сумму!

  9. AndreDib表示:

    best canadian online pharmacy https://canadianmdpharm.shop/# canadian online pharmacy
    top 10 online pharmacy in india

  10. gay sex表示:

    Introducing to you the most prestigious online entertainment address today. Visit now to experience now!

  11. Brandonnot表示:

    Best online Indian pharmacy: IndianCertPharm – Best online Indian pharmacy

  12. Как выбрать идеальную входную металлическую дверь, идеально впишется в интерьер.
    Где купить надежную входную металлическую дверь по выгодной цене.
    Что учесть при выборе входной металлической двери.
    Преимущества металлических входных дверей перед другими видами.
    дверь металлическая входная дверь металлическая входная цена .

    Сравнение входных металлических дверей различных брендов.

  13. AndrewDok表示:

    you can check here gopulse

  14. AndrewDok表示:

    you could try this out go pulse

  15. rik vip表示:

    Introducing to you the most prestigious online entertainment address today. Visit now to experience now!

  16. AndrewPloxy表示:

    visit their website cielo finance

發佈留言

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