jdom解析xml

我自己的写的:(假如我们现在xml是存在数据库的某一个字段中,先取出这个字符串也就是xml文件嘛,现在得到的这个xml是放在我们程序的一个String里面的)

//这里我们也知道xml文件格式撒: 

StringReader reader = new StringReader(BackItemOrder_xml);
   SAXBuilder sax = new SAXBuilder();
   try {
    org.jdom.Document document = sax.build(reader);
    Element element = document.getRootElement();
    OmsOrder omsOrder = getOmsOrderXml(element);
    this.commonDao.store(omsOrder);
    inter.setDealTime(new Date());
    inter.setStatus("FINISHED");
    this.commonDao.store(inter);
   } catch (JDOMException e) {
    inter.setDealTime(new Date());
    inter.setResponseContent("单据类型为退货售后单的xml文件异常");
    this.commonDao.store(inter);
    e.printStackTrace();
   }

 

public OmsOrder getOmsOrderXml(Element element){
  OmsOrder omsOrder = new OmsOrder();
  Element Twoelement = element.getChild("ReturnOrderReceiving");
  List<Element> list = Twoelement.getChildren();
  for(Element objElement : list){
   if("OrderCode".equals(objElement.getName())){
    omsOrder.setBillCode2(objElement.getText());
   }
   else if("ReturnCode".equals(objElement.getName())){
    omsOrder.setBillCode1(objElement.getText());
   }
   else if("ReturnDate".equals(objElement.getName())){
    omsOrder.setOrderDate( DateUtil.formatStrToDate(objElement.getText()));
   }
   else if("Name".equals(objElement.getName())){
    omsOrder.setContactPerson(objElement.getText());
   }
   else if("TelePhone".equals(objElement.getName())){
    omsOrder.setTelephone(objElement.getText());
   }
   else if("Province".equals(objElement.getName())){
    omsOrder.setProvince(objElement.getText());
   }
   else if("City".equals(objElement.getName())){
    omsOrder.setCity(objElement.getText());
   }
   else if("AreaCounty".equals(objElement.getName())){
    omsOrder.setCounty(objElement.getText());
   }
   else if("Address".equals(objElement.getName())){
    omsOrder.setStreet(objElement.getText());
   }
  }
  
  return omsOrder;
  
 }

 

然后下面这是网上copy的哈:

 

    xml是一种广为使用的可扩展标记语言,java中解析xml的方式有很多,最常用的像jdom、dom4j、sax等等。前两天刚好有个程序需要解析xml,就学了下jdom,写了个小例子,这里做个学习笔记。

 

    要使用jdom解析xml文件,需要下载jdom的包,我使用的是jdom-1.1。解压之后,将lib文件夹下的.jar文件以及build文件夹下的jdom.jar拷贝到工程文件夹下,然后就可以使用jdom操作xml文件了。

 

    一、读取xml文件

 

    假设有这样一个xml文件:

Xml代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <sys-config>  
  3.     <jdbc-info>  
  4.         <driver-class-name>oracle.jdbc.driver.OracleDriver</driver-class-name>  
  5.         <url>jdbc:oracle:thin:@localhost:1521:database</url>  
  6.         <user-name>why</user-name>  
  7.         <password>why</password>  
  8.     </jdbc-info>  
  9.     <provinces-info>  
  10.         <province id="hlj" name="黑龙江">  
  11.             <city id="harb">哈尔滨</city>  
  12.             <city id="nj">嫩江</city>  
  13.         </province>  
  14.         <province id="jl" name="吉林"></province>  
  15.     </provinces-info>  
  16. </sys-config>  

 

    首先,用 org.jdom.input.SAXBuilder 这个类取得要操作的xml文件,会返回一个 org.jdom.Document 对象,这里需要做一下异常处理。然后,取得这个xml文件的根节点,org.jdom.Element 代表xml文件中的一个节点,取得跟节点后,便可以读取xml文件中的信息。利用 org.jdom.xpath.XPath 可以取得xml中的任意制定的节点中的信息。

    例如,要取得上面文件中的 <jdbc-info> 下的 <driver-class-name> 中的内容,先取得这个节点Element driverClassNameElement = (Element)XPath.selectSingleNode(rootEle, "//sys-config/jdbc-info/driver-class-name"),注意,根节点前要使用两个 "/" ,然后,用 driverClassNameElement.getText() 便可以取得这个节点下的信息。

    如果一个节点下有多个名称相同的子节点,可以用XPath.selectNodes()方法取得多个子节点的List,遍历这个List就可以操作各个子节点的内容了。

    下面是我写的读取上面xml文件的例子,比起文字描述更直观一些吧:

Java代码
  1. package com.why.jdom;   
  2.   
  3. import java.io.IOException;   
  4. import java.util.Iterator;   
  5. import java.util.List;   
  6.   
  7. import org.jdom.input.SAXBuilder;   
  8. import org.jdom.xpath.XPath;   
  9. import org.jdom.Document;   
  10. import org.jdom.Element;   
  11. import org.jdom.JDOMException;   
  12.   
  13. public class ReadXML {   
  14.   
  15.     /**  
  16.      * @param args  
  17.      */  
  18.     public static void main(String[] args) {   
  19.         SAXBuilder sax = new SAXBuilder();   
  20.         try {   
  21.             Document doc = sax.build("src/config.xml");   
  22.             Element rootEle = doc.getRootElement();   
  23.             Element driverClassNameElement = (Element)XPath.selectSingleNode(rootEle, "//sys-config/jdbc-info/driver-class-name");   
  24.             String driverClassName = driverClassNameElement.getText();   
  25.             System.out.println("driverClassName = " + driverClassName);   
  26.                
  27.             List provinceList = XPath.selectNodes(rootEle, "//sys-config/provinces-info/province");   
  28.             for(Iterator it = provinceList.iterator();it.hasNext();){   
  29.                 Element provinceEle = (Element)it.next();   
  30.                 String proId = provinceEle.getAttributeValue("id");   
  31.                 String proName = provinceEle.getAttributeValue("name");   
  32.   
  33.                 System.out.println("provinceId = " + proId + "   provinceName = " + proName);   
  34.                    
  35.                 List cityEleList = (List)provinceEle.getChildren("city");   
  36.                    
  37.                 for(Iterator cityIt = cityEleList.iterator();cityIt.hasNext();){   
  38.                     Element cityEle = (Element)cityIt.next();   
  39.                     String cityId = cityEle.getAttributeValue("id");   
  40.                     String cityName = cityEle.getText();   
  41.   
  42.                     System.out.println("    cityId = " + cityId + "   cityName = " + cityName);   
  43.                 }   
  44.             }   
  45.         } catch (JDOMException e) {   
  46.             // TODO 自动生成 catch 块   
  47.             e.printStackTrace();   
  48.         } catch (IOException e) {   
  49.             // TODO 自动生成 catch 块   
  50.             e.printStackTrace();   
  51.         }   
  52.   
  53.     }   
  54.   
  55. }  
package com.why.jdom;

import java.io.IOException;
import java.util.Iterator;
import java.util.List;

import org.jdom.input.SAXBuilder;
import org.jdom.xpath.XPath;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;

public class ReadXML {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		SAXBuilder sax = new SAXBuilder();
		try {
			Document doc = sax.build("src/config.xml");
			Element rootEle = doc.getRootElement();
			Element driverClassNameElement = (Element)XPath.selectSingleNode(rootEle, "//sys-config/jdbc-info/driver-class-name");
			String driverClassName = driverClassNameElement.getText();
			System.out.println("driverClassName = " + driverClassName);
			
			List provinceList = XPath.selectNodes(rootEle, "//sys-config/provinces-info/province");
			for(Iterator it = provinceList.iterator();it.hasNext();){
				Element provinceEle = (Element)it.next();
				String proId = provinceEle.getAttributeValue("id");
				String proName = provinceEle.getAttributeValue("name");

				System.out.println("provinceId = " + proId + "   provinceName = " + proName);
				
				List cityEleList = (List)provinceEle.getChildren("city");
				
				for(Iterator cityIt = cityEleList.iterator();cityIt.hasNext();){
					Element cityEle = (Element)cityIt.next();
					String cityId = cityEle.getAttributeValue("id");
					String cityName = cityEle.getText();

					System.out.println("    cityId = " + cityId + "   cityName = " + cityName);
				}
			}
		} catch (JDOMException e) {
			// TODO 自动生成 catch 块
			e.printStackTrace();
		} catch (IOException e) {
			// TODO 自动生成 catch 块
			e.printStackTrace();
		}

	}

}

 

 

    二、写xml文件

 

    写xml文件与读取xml文件的操作类似,利用 org.jdom.output.XMLOutputter 就可以将处理好的xml输出到文件了。可以设置文件的编码方式,不过一般使用UTF-8就可以了。代码如下:

 

Java代码
package com.why.jdom;   
  1.   
  2. import java.io.FileNotFoundException;   
  3. import java.io.FileOutputStream;   
  4. import java.io.IOException;   
  5.   
  6. import org.jdom.Document;   
  7. import org.jdom.Element;   
  8. import org.jdom.output.XMLOutputter;   
  9.   
  10. public class WriteXML {   
  11.   
  12.            
  13.     /**  
  14.      * @param args  
  15.      */  
  16.     public static void main(String[] args) {   
  17.         // TODO 自动生成方法存根   
  18.         Element rootEle = new Element("sys-config");   
  19.         Element provincesEle = new Element("provinces-info");   
  20.            
  21.         Element provinceEle = new Element("province");   
  22.         provinceEle.setAttribute("id","hlj");   
  23.         provinceEle.setAttribute("name","黑龙江省");   
  24.            
  25.         Element cityEle1 = new Element("city");   
  26.         cityEle1.setAttribute("id","harb");   
  27.         cityEle1.addContent("哈尔滨");   
  28.            
  29.         Element cityEle2 = new Element("city");   
  30.         cityEle2.setAttribute("id","nj");   
  31.         cityEle2.addContent("嫩江");   
  32.            
  33.            
  34.         provinceEle.addContent(cityEle1);   
  35.         provinceEle.addContent(cityEle2);   
  36.         provincesEle.addContent(provinceEle);   
  37.         rootEle.addContent(provincesEle);   
  38.            
  39.         Document doc = new Document(rootEle);   
  40.            
  41.         XMLOutputter out = new XMLOutputter();   
  42.            
  43.            
  44. //      out.setFormat(Format.getCompactFormat().setEncoding("GBK"));//设置文件编码,默认为UTF-8  
  45.         String xmlStr = out.outputString(doc);   
  46.         System.out.println(xmlStr);   
  47.            
  48.         try {   
  49.             out.output(doc, new FileOutputStream("c:/test.xml"));   
  50.         } catch (FileNotFoundException e) {   
  51.             // TODO 自动生成 catch 块   
  52.             e.printStackTrace();   
  53.         } catch (IOException e) {   
  54.             // TODO 自动生成 catch 块   
  55.             e.printStackTrace();   
  56.         }   
  57.            
  58.     }   
  59.   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值