Dom4j入门
一、Dom4j API生成xml文件
@Test
public void bulidXmlByDom4j(){
//创建document对象
Document document = DocumentHelper.createDocument();
//设置xml文档编码
document.setXMLEncoding("UTF-8");
//创建root根节点
Element root = DocumentHelper.createElement("root");
root.addAttribute("version","1.0");
//创建head节点
Element header = DocumentHelper.createElement("header");
//设置节点的属性
header.addAttribute("version","1.0");
//设置子节点 (子节点无属性时,可直接用addElement创建)
Element element_header1 = header.addElement("timestamp");
//设置子节点的内容
element_header1.setText("20190122");
Element element_header2 = header.addElement("username");
element_header2.setText("yangsj");
Element element_header3 = header.addElement("password");
element_header3.setText("root"); //创建body节点
Element body = DocumentHelper.createElement("body");
body.addAttribute("version","1.0");
//创建action节点
Element action = DocumentHelper.createElement("action");
//创建action的子节点
Element action_option = DocumentHelper.createElement("option");
action_option.addAttribute("name","url");
action_option.addAttribute("value","http://127.0.0.1");
action.add(action_option); //创建data 节点
Element data = DocumentHelper.createElement("data");
Element dataField = DocumentHelper.createElement("field");
dataField.addAttribute("name","money");
dataField.addAttribute("value","10000");
data.add(dataField); body.add(action);
body.add(data); root.add(header);
root.add(body);
document.add(root);
String xml = document.asXML(); System.out.println(xml);
}
执行结果
<?xml version="1.0" encoding="UTF-8"?>
<root version="1.0">
<header version="1.0">
<timestamp>20190122</timestamp>
<username>yangsj</username>
<password>root</password>
</header>
<body version="1.0">
<action>
<option name="url" value="http://127.0.0.1"/>
</action>
<data>
<field name="money" value="10000"/>
</data>
</body>
</root>
二、Dom4j 解析xml
@Test
public void readXmlInfo() throws DocumentException {
String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><root version=\"1.0\"><body " +
"version=\"1.0\"><action><option name=\"url\" value=\"http://127.0.0.1\"/></action><data><field name=\"money\" value=\"10000\"/></data></body><header version=\"1.0\"><timestamp>20190122</timestamp><username>yangsj</username><password>root</password></header></root>"; Map<String,String> headerMap = new HashMap<>();
Map<String,String> actionMap = new HashMap<>();
Map<String,String> dataMap = new HashMap<>(); Document document = DocumentHelper.parseText(xml);
// 获取根元素
Element root = document.getRootElement();
//遍历根元素
for (Iterator iter = root.elementIterator(); iter.hasNext();){
Element element = (Element) iter.next();
//遍历header节点
if("header".equalsIgnoreCase(element.getName())){
for(Iterator i = element.elementIterator(); i.hasNext();){
Element headerElement = (Element) i.next();
headerMap.put(headerElement.getName(),headerElement.getTextTrim());
}
}
//遍历body节点
if("body".equalsIgnoreCase(element.getName())){
for (Iterator j = element.elementIterator(); j.hasNext();){
Element bodyElement = (Element) j.next();
//遍历action节点
if ("action".equalsIgnoreCase(bodyElement.getName())){
for (Iterator k = bodyElement.elementIterator(); k.hasNext();){
Element actionElement = (Element) k.next();
//获取节点的属性值
String name = actionElement.attributeValue("name");
String value = actionElement.attributeValue("value");
actionMap.put(name,value);
}
}
//遍历data节点
if ("data".equalsIgnoreCase(bodyElement.getName())){
for (Iterator k = bodyElement.elementIterator(); k.hasNext();){
Element actionElement = (Element) k.next();
//获取节点的属性值
String name = actionElement.attributeValue("name");
String value = actionElement.attributeValue("value");
dataMap.put(name,value);
}
}
}
} } headerMap.forEach((x,y)->System.out.println("name :" + x + " value :" + y));
System.out.println("------------------------------------");
actionMap.forEach((x,y)->System.out.println("name :" + x + " value :" + y));
System.out.println("------------------------------------");
dataMap.forEach((x,y)->System.out.println("name :" + x + " value :" + y)); }
三、执行结果
name :password value :root
name :timestamp value :20190122
name :username value :yangsj
------------------------------------
name :url value :http://127.0.0.1
------------------------------------
name :money value :10000
Dom4j入门的更多相关文章
- Java从入门到精通——技巧篇之利用dom4j取出XML文件中的数据
在我们做项目的时候会经常用到XML文件用来配置系统,XML让系统更加的具有了灵活性,Java如何从XML中取出我们想要的数据呢?下面是我利用DOM4J来实现取出XML文件中的数据. XML文件 < ...
- 浅谈Hibernate入门
前言 最近打算做一个自己的个人网站,经过仔细思考,打算使用hibernate作为开发的ORM框架,因此各种找资料,由于本人是刚刚接触这技术的,所以就找了比较基础的知识来分享下 基本概述 Hiberna ...
- 学Android开发,入门语言java知识点
学Android开发,入门语言java知识点 Android是一种以Linux为基础的开源码操作系统,主要使用于便携设备,而linux是用c语言和少量汇编语言写成的,如果你想研究Android,就去学 ...
- 【JAVA与DOM4J实现对XML文档的CRUD操作】
一.简介 1.网上下载DOM4J 1.6.1压缩包,解压开之后,发现几个目录和一个jar文件,jar文件是必须的文件其它目录: docs目录:帮助文档的目录,单击index.html: Quick s ...
- dom4j API使用简介
dom4j API使用简介 功能简介 dom4j是一个Java的XML API,类似于jdom,用来读写XML文件的.dom4j是一个非常非常优秀的Java XML API,具有性能优异.功能强大和极 ...
- XML学习笔记(2)--dom4j操作XML
1. 介绍(四种方式的比较这部分转载自:http://www.blogjava.net/xcp/archive/2010/02/12/312617.html) 1)DOM(JAXP Crimson解析 ...
- 07_XPath_01_入门
[工程截图] [person.xml] <?xml version="1.0" encoding="UTF-8"?> <students> ...
- Dom4j的使用(全而好的文章)
版权声明: 本文由冰云完成,首发于CSDN,未经许可,不得使用于任何商业用途. 文中代码部分引用自DOM4J文档. 欢迎转载,但请保持文章及版权声明完整. 如需联络请发邮件:icecloud( ...
- java使用dom4j和XPath解析XML与.net 操作XML小结
最近研究java的dom4j包,使用 dom4j包来操作了xml 文件 包括三个文件:studentInfo.xml(待解析的xml文件), Dom4jReadExmple.java(解析的主要类), ...
随机推荐
- lerna基本试用
安装 yarn global add lerna or npm install -g lerna 基本项目 初始化 git init platform cd platform lerna init 效 ...
- 公共的Json操作类
using System; using System.Data; using System.Text; using System.Collections.Generic; using System.R ...
- linux shell 模拟post请求
Linux 下curl模拟Http 的get or post请求. 一.get请求 curl "http://www.baidu.com" 如果这里的URL指向的是一个文件或 ...
- 不同复制模式下,如何忽略某些binlog事件
在MySQL复制中,如果slave节点上遇到错误,比如数据不存在或者主键冲突等错误时,想要忽略这些错误,可以采用以下几种方法: 1.未启用GTID模式时 只需通过设定 SQL_SLAVE_SKIP_C ...
- 学习blus老师js(4)--DOM
一.DOM节点 1.获取子节点: childNodes nodeType 节点类型 children 只包括元素,不包括文本: 子节点只算第一层.只算孩子一级 ...
- Conv
folly/Conv.h folly/Conv.h is a one-stop-shop for converting values across types. Its main features a ...
- memcached配置 (初级)以及测试
一.memcached安装 memcached依赖 $ sudo apt-get install libevent-dev 安装memcached服务 $ sudo apt-get install ...
- cmd变量,参数,for循环,
@echo offrem *****************************************************rem Create By Q_rui CopryRight@_ ...
- probably another instance of uWSGI is running on the same address (127.0.0.1:9090). bind(): Address already in use
probably another instance of uWSGI is running on the same address (127.0.0.1:9090). bind(): Address ...
- JS: 如何计算一个月有多少天
转自:https://www.2cto.com/kf/201806/755776.html 1 function getCountDays() { var curDate = new Date(); ...