码迷,mamicode.com
首页 > 其他好文 > 详细

dom4j如何解析xml

时间:2015-06-09 16:25:04      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:

简单解析自己定义的xml文件,首先,给解析xml文件的类来个构造方法:

 1 public xmlData(File xmlFile)  {
 2         file = xmlFile;
 3         try {
 4             saxReader = new SAXReader();
 5             saxReader.setEncoding("UTF-8");
 6             doc = saxReader.read(this.file);
 7             
 8             init();
 9         } catch (DocumentException e) {
10             throw new Exception("Open xml file " + xmlFile.getAbsolutePath()
11                 + " failed with error:" + e.getMessage());        }
12     }

下面是初始化数据的方法:

private void init() throws Exception {
        try {
            Node node = doc.selectSingleNode("//Com/User");
            user = node.valueOf("@User");
            name = node.valueOf("@Name");
           }catch(Exception e){
               throw new Exception("init xml file fail"+e.getMessage());
           }

   }

 

dom4j如何解析xml

标签:

原文地址:http://www.cnblogs.com/lgm1999/p/4563515.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!