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,935 Responses

  1. Clinterete表示:

    http://farmaprodotti.com/# farmacia online senza ricetta
    farmacia online piГ№ conveniente

  2. JimmyGully表示:

    Discover Stargate Finance: Your Gateway to DeFi
    In the rapidly evolving world of decentralized finance (DeFi), Stargate Finance stands out as a reliable platform for decentralized transactions and yield optimization. Let’s explore how Stargate Finance can enhance your financial strategies.
    stargate finance bridge
    Why Choose Stargate Finance?
    Stargate Finance offers a comprehensive suite of tools designed to facilitate seamless and secure transactions. Here’s why you should consider integrating Stargate Finance into your DeFi experience:

    Seamless Cross-Chain Transactions: Facilitate instant and smooth transactions across multiple blockchain networks without the hassle of traditional exchanges.
    High-Performance Liquidity Pools: Access a wide range of liquidity pools to optimize your yield farming strategies and maximize returns.
    Secure Protocols: Enjoy peace of mind with top-tier security measures designed to protect your assets and data.
    Features that Enhance Your DeFi Experience
    Stargate Finance uniquely positions itself by offering features that cater to both novice and veteran DeFi users:

    Intuitive User Interface: Navigate effortlessly through the platform with a user-friendly interface that simplifies complex DeFi operations.
    24/7 Customer Support: Get assistance anytime with a dedicated support team available to resolve queries and help optimize your DeFi strategies.
    Comprehensive Analytics: Leverage data-driven insights to make informed decisions, tailor your yield farming, and monitor performance.
    Getting Started with Stargate Finance
    Ready to dive into the world of DeFi with Stargate Finance? Here’s a quick guide to get you started:

    Visit the and create your account.
    Connect your crypto wallet to begin accessing the features.
    Explore liquidity pools and start yield farming to optimize your returns.
    With these resources, you can securely and efficiently manage your decentralized financial strategies.

    Conclusion
    Stargate Finance empowers you to confidently participate in the DeFi landscape, offering secure, efficient, and user-friendly solutions for the modern investor. Discover what it means to have a true gateway to financial freedom and innovation with Stargate Finance.

    For more information and to get started today, .

    Understanding Stargate Finance Token
    The Stargate Finance Token is an integral part of the blockchain ecosystem, especially for those involved in decentralized finance (DeFi). As a bridge to seamless blockchain transactions, it plays a crucial role in enhancing interoperability across different networks.

    Key Features of Stargate Finance Token
    Stargate Finance Token stands out in the DeFi space for several reasons. Here are its key features:

    Interoperability: Facilitates cross-blockchain transactions with ease.
    Scalability: Designed to handle a large volume of transactions.
    Security: Incorporates advanced security protocols for secure transfers.
    Liquidity Pools: Offers attractive opportunities for liquidity providers.
    Benefits of Using Stargate Finance Token
    Using the Stargate Finance Token provides several benefits to investors and users:

    Cost Efficiency: Reduces transaction fees compared to traditional methods.
    Speed: Transfers are quick, minimizing waiting times.
    Investment Potential: Opportunity for profitable returns through staking and liquidity.
    Innovation: Continuously updates to incorporate the latest in blockchain technology.
    How to Get Started with Stargate Finance Token
    Getting started with Stargate Finance Token is straightforward:

    Visit a reputable that lists Stargate tokens.
    Create an account and complete any necessary verification.
    Deposit funds into your account via fiat or cryptocurrency transfer.
    Purchase Stargate Finance Tokens from the exchange market.
    Consider joining liquidity pools or staking to maximize your returns.

  3. Edwardopele表示:

    viagra generico prezzo piГ№ basso: FarmaSildItaly – pillole per erezione in farmacia senza ricetta

  4. Edwardopele表示:

    viagra 50 mg prezzo in farmacia: Viagra – viagra naturale in farmacia senza ricetta

  5. Предлагаем услуги профессиональных инженеров офицальной мастерской.
    Еслли вы искали ремонт холодильников smeg цены, можете посмотреть на сайте: ремонт холодильников smeg в москве
    Наши мастера оперативно устранят неисправности вашего устройства в сервисе или с выездом на дом!

  6. BradleyThine表示:

    acquisto farmaci con ricetta: BRUFEN 600 acquisto online – acquistare farmaci senza ricetta
    Farmacie online sicure

  7. ZaimroaSpoit表示:

    Срочные расходы могут появиться в любой момент, но теперь не нужно ждать одобрения банка. займы без процентов позволяют получить до 100 000 рублей без лишних вопросов. Кредитная история не важна, важна лишь ваша платежеспособность.

  8. Лучшее казино для аркадных игр | Играйте в эксклюзивные аркады в онлайн казино | Онлайн казино для ценителей аркадных игр | Насладитесь азартом в аркадном казино | Играйте в увлекательные аркады и выигрывайте призы | Уникальные аркады только у нас | Выигрывайте крупные суммы в аркадах | Играйте в аркады и выигрывайте деньги | Онлайн казино с удивительными аркадными играми | Играйте в аркадные игры и выигрывайте деньги | Аркадные развлечения и выигрыши в онлайн казино | Уникальные аркадные игры и азарт в казино | Играйте в аркадные игры и выигрывайте деньги | Лучшие аркадные развлечения только у нас | Аркадные сражения и азарт для настоящих игроков | Увлекательные аркады и возможность заработать деньги
    бонус код arkada casino arkada casino бонусы для новичков .

  9. 383924 675983youre in point of fact a excellent webmaster. The site loading velocity is amazing. It seems that youre doing any distinctive trick. In addition, The contents are masterpiece. youve done a great activity on this subject! 58213

  10. Edwardopele表示:

    viagra generico recensioni: Viagra – alternativa al viagra senza ricetta in farmacia

  11. Clinterete表示:

    http://farmatadalitaly.com/# farmaci senza ricetta elenco
    farmacia online

  12. BradleyThine表示:

    acquistare farmaci senza ricetta: Farma Prodotti – farmaci senza ricetta elenco
    farmacie online sicure

  13. Edwardopele表示:

    viagra online consegna rapida: Viagra – viagra 100 mg prezzo in farmacia

  14. Clinterete表示:

    http://farmaprodotti.com/# farmacie online sicure
    п»їFarmacia online migliore

  15. Действуй за Фактические Деньги с Легкостью! Онлайн покер – это не только игра, это вся вселенная волнения, тактики и шанса выиграть реальные деньги, не выходя с дома. Если вы пытаетесь где поиграть на покер в интернете, на русском языке и с выводом денег прямо на карту, значит вы оказались нужному месту. Данная статья – твой проводник в мир онлайн покера в россии.

    Почему Онлайн Покер настолько Популярен? Покер – это классическая карточная игра, что веками привлекала миллионы людей. Онлайн формат дал ей свежую жизнь, сотворив игры открытыми для каждого жаждущих. Вот только несколько причин известности онлайн покера:

    Удобство и доступность: Играть можно в всякое время и в любом месте, имея лишь доступ к браузере или мобильному устройству. Большой выбор: Покеррумы дают различные виды покера, форматы турниров а уровни ставок. Играть с реальными людьми: Вы способен соревноваться с реальными соперниками со всего мира, а не с компьютерными ботами. Шанс выигрывать реальные деньги: Играть на деньги – является ни только азарт, но также шанс наполнить твой кошелек. Социальный аспект: Возможно играть с друзьями или устанавливать свежие знакомства с людьми, разделяющих ваш интерес. Где Играть в Онлайн Покер в россии на Реальные Деньги? В россии есть множество сайты и покеррумы, дающих игры в онлайн покер. Но каким образом подобрать лучший из них? Мы поможем вам сориентироваться:

    Популярные Покеррумы для Русских Игроков:

    Мы составили рейтинг лучших покеррумов для русском языке игроков, беря во внимание такие критерии:

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

    Особое Внимание на Минимальный Депозит:

    Когда ты новичок, тогда следует обратить внимание на покеррумы с минимальным депозитом. Это даст возможность тебе начать играть на реальные деньги без больших финансовых вложений.

    Разрешенные Покеррумы:

    Убедитесь, что подобранный тобой рум является допущенным в россии, чтобы не допустить возможных проблем с доступом а выводом средств.

    Онлайн Покер с Выводом Денег на Карту: Как Это Работает? После того, как вы определились с покеррумом и выбрали игру, вы способен пополнить твой баланс а начать играть на деньги. Большинство сайтов предлагают всевозможные способы пополнения а вывода средств, включая:

    Банковские карты (Visa, Mastercard) Электронные кошельки Другие платежные системы Вывод денег на карту как правило занимает от нескольких часов до нескольких дней, в зависимости от рума и выбранного способа вывода.

    Как Играть в Онлайн Покер с Друзьями? Многие покеррумы предлагают возможность играть с друзьями за закрытыми столами. Это замечательный метод уделить время с людьми, с которыми вы знакомы, а сразиться за титул лучшего игрока в твоей компании.

    Бесплатный Покер: Возможность Попробовать Свои Силы Когда ты новичок а желаешь вначале привыкнуть с правилами, многие сайты дают возможность играть в бесплатный покер. Данное прекрасный способ поупражняться и получить опыта перед тем, как начать играть на реальные деньги.

    Покер на пк: Комфорт и Удобство Когда вы предпочитаете играть на пк, тогда большая часть покеррумов дают программы для компьютеров, которые гарантируют более удобный а надежный игровой процесс.

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

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

  16. GreggRom表示:

    A brief history of sunglasses, from Ancient Rome to Hollywood
    Кракен тор

    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.

  17. BradleyThine表示:

    acquisto farmaci con ricetta: FarmTadalItaly – Farmacie online sicure
    farmaci senza ricetta elenco

  18. Five Mercedes Car Key Replacement Lessons From The Pros Mercedes
    Key Fob Replacement [Laughronald4.Bravejournal.Net]

  19. Edwardopele表示:

    acquistare farmaci senza ricetta: Ibuprofene 600 prezzo senza ricetta – Farmacie on line spedizione gratuita

  20. Clinterete表示:

    https://farmatadalitaly.com/# comprare farmaci online con ricetta
    comprare farmaci online con ricetta

  21. 11 Ways To Fully Redesign Your Replacement Door Lock Broken window lock Repair

  22. BradleyThine表示:

    migliori farmacie online 2024: Farma Brufen – Farmacia online miglior prezzo
    migliori farmacie online 2024

  23. The Biggest Sources Of Inspiration Of Double Glazing Repairs Birmingham emergency boarding Birmingham – morphomics.science

  24. Edwardopele表示:

    Farmacie online sicure: Tadalafil generico migliore – farmacie online affidabili

  25. Clinterete表示:

    http://farmasilditaly.com/# viagra generico sandoz
    comprare farmaci online all’estero

  26. BradleyThine表示:

    viagra 50 mg prezzo in farmacia: Farma Sild Italy – viagra online spedizione gratuita
    farmacie online sicure

  27. Edwardopele表示:

    farmacie online affidabili: Farm Tadal Italy – top farmacia online

  28. Clinterete表示:

    https://farmasilditaly.com/# le migliori pillole per l’erezione
    acquisto farmaci con ricetta

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

  30. BradleyThine表示:

    migliori farmacie online 2024: Cialis generico farmacia – Farmacia online miglior prezzo
    migliori farmacie online 2024

發佈回覆給「Clinterete」的留言 取消回覆

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