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

存入xml操作

时间:2017-09-01 13:37:12      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:XML   tac   用户   file   leo   class   his   int   for   

 1         //存入数据库
 2         try {
 3             //解析xml
 4             SAXReader reader = new SAXReader();
 5             String path = this.getServletContext().getRealPath("WEB-INF/classes/users.xml");
 6             Document dom = reader.read(path);
 7             Element root = dom.getRootElement();
 8             //凭空创建userEle保存用户信息
 9             Element userEle = DocumentHelper.createElement("user");
10             userEle.setAttributeValue("username", username);
11             userEle.setAttributeValue("password", password);
12             userEle.setAttributeValue("nickname", nickname);
13             userEle.setAttributeValue("email", email);
14             //挂载到根节点
15             root.add(userEle);
16             //更新xml
17             XMLWriter wrtier = new XMLWriter(new FileOutputStream(path),OutputFormat.createPrettyPrint());
18             wrtier.write(dom);
19             wrtier.close();
20         } catch (Exception e) {
21             e.printStackTrace();
22             throw new RuntimeException(e);
23         }
24     }

 

存入xml操作

标签:XML   tac   用户   file   leo   class   his   int   for   

原文地址:http://www.cnblogs.com/pxffly/p/7462769.html

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