本文著重介紹在應用程序中如何使用JDOM對XML文件進行操作,要求讀者具有基本的JAVA語言基礎。
XML由於其可移植性,已經成為應用開發中必不可少的環節。我們經常會把應用程序的一些配置文件(屬性文件)寫成XML的格式(當然,也可以用property文件而不用XML文件),應用程序通過XML的訪問類來對其進行操作。對XML進行操作可以通過若干種方法,如:SAX, DOM, JDOM, JAXP等,JDOM由於其比較簡單實用而被開發人員普遍使用。
本文主要分兩部分,第一部分介紹如何把XML文件中的配置讀入應用程序中,第二部分介紹如何使用JDOM將配置輸出到XML文件中。
以下是一段XML配置文件,文件名為contents.xml:
<?xml version="1.0"?>
<book>
<title>Java and XML</title>
<contents>
<chapter title="Introduction">
<topic>XML Matters</topic>
<topic>What's Important</topic>
<topic>The Essentials</topic>
<topic>What's Next?</topic>
</chapter>
<chapter title="Nuts and Bolts">
<topic>The Basics</topic>
<topic>Constraints</topic>
<topic>Transformations</topic>
<topic>And More...</topic>
<topic>What's Next?</topic>
</chapter>
</contents>
</book>
下面的程序通過使用JDOM中SAXBuilder類對contents.xml進行訪問操作,把各個元素顯示在輸出console上,程序名為:SAXBuilderTest.java,內容如下:
import java.io.File;
import java.util.Iterator;
import java.util.List;import org.jdom.Document;
import org.jdom.Element;
import org.jdom.input.SAXBuilder;public class SAXBuilderTest {
private static String titlename;
private String chapter;
private String topic;
public static void main(String[] args) {
try {
SAXBuilder builder = new SAXBuilder();
Document document = builder.build(new File("contents.xml"));
Element root = document.getRootElement();
Element title = root.getChild("title");
titlename = title.getText();
System.out.println("BookTitle: " + titlename);
Element contents = root.getChild("contents");
List chapters = contents.getChildren("chapter");
Iterator it = chapters.iterator();
while (it.hasNext()) {
Element chapter = (Element) it.next();
String chaptertitle = chapter.getAttributeValue("title");
System.out.println("ChapterTitle: " + chaptertitle);
List topics = chapter.getChildren("topic");
Iterator iterator = topics.iterator();
while (iterator.hasNext()) {
Element topic = (Element) iterator.next();
String topicname = topic.getText();
System.out.println("TopicName: " + topicname);
}
}
} catch (Exception ex) {
}
}
}