快速业务通道

实例讲解使用JDOM对XML文件进行操作 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-24

实例讲解使用JDOM对XML文件进行操作

时间:2010-05-13

本文着重介绍在应用程序中如何使用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&apos;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&apos;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) {     }   } }

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号