XStream(xml/bean转换)
XStream
1. 什么作用
* 可以把JavaBean转换为(序列化为)xml
* 核心JAR包:xstream-1.4.7.jar;
* 必须依赖包:xpp3_min-1.1.4c(XML Pull Parser,一款速度很快的XML解析器);
* XStream xstream = new XStream();
* String xmlStr = xstream.toXML(javabean);
* 别名:把类型对应的元素名修改了
> xstream.alias("china", List.class):让List类型生成的元素名为china
> xstream.alias("province", Province.class):让Province类型生成的元素名为province
* 使用为属性:默认类的成员,生成的是元素的子元素!我们希望让类的成员生成元素的属性
> xstream.useAttributeFor(Province.class, "name"):把Province类的名为name成员,生成<province>元素的name属性
* 去除Collection类型的成名:我们只需要Collection的内容,而不希望Collection本身也生成一个元素
> xstream.addImplicitCollection(Province.class, "cities"):让Province类的名为cities(它是List类型的,它的内容还会生成元素)的成名不生成元素
* 去除类的指定成名,让其不生成xml元素
> xstream.omitField(City.class, "description"):在生成的xml中不会出现City类的名为description的对应的元素!
具体实例
- package cn.itcast.demo1;
- import java.util.ArrayList;
- import java.util.List;
- import org.junit.Test;
- import com.thoughtworks.xstream.XStream;
- /**
- * 演示XStream
- * @author cxf
- *
- */
- public class Demo1 {
- // 返回javabean集合
- public List<Province> getProinvceList() {
- Province p1 = new Province();
- p1.setName("北京");
- p1.addCity(new City("东城区", "DongChengQu"));
- p1.addCity(new City("昌平区", "ChangPingQu"));
- Province p2 = new Province();
- p2.setName("辽宁");
- p2.addCity(new City("沈阳", "shenYang"));
- p2.addCity(new City("葫芦岛", "huLuDao"));
- List<Province> provinceList = new ArrayList<Province>();
- provinceList.add(p1);
- provinceList.add(p2);
- return provinceList;
- }
- /**
- <list> --> List类型显示list
- <cn.itcast.demo1.Province> --> javabean的类型为Province,它元素的名称为类的完整名
- <name>北京</name> --> javabean的属性名
- <cities> --> javabean的属性名
- <cn.itcast.demo1.City> --> 类名
- <name>东城区</name> --> 属性名
- <description>DongChengQu</description> --> 属性名
- </cn.itcast.demo1.City>
- <cn.itcast.demo1.City>
- <name>昌平区</name>
- <description>ChangPingQu</description>
- </cn.itcast.demo1.City>
- </cities>
- </cn.itcast.demo1.Province>
- <cn.itcast.demo1.Province>
- <name>辽宁</name>
- <cities>
- <cn.itcast.demo1.City>
- <name>沈阳</name>
- <description>shenYang</description>
- </cn.itcast.demo1.City>
- <cn.itcast.demo1.City>
- <name>葫芦岛</name>
- <description>huLuDao</description>
- </cn.itcast.demo1.City>
- </cities>
- </cn.itcast.demo1.Province>
- </list>
- */
- @Test
- public void fun1() {
- List<Province> proList = getProinvceList();
- /*
- * 创建XStream对象
- * 调用toXML把集合转换成xml字符串
- */
- XStream xstream = new XStream();
- String s = xstream.toXML(proList);
- System.out.println(s);
- }
- /*
- * 别名(alias)
- * 希望:
- * * 默认List类型对应<list>元素,希望让List类型对应<china>元素
- * * 默认Province类型对应<cn.itcast.demo1.Province>,希望让它对应<province>
- * * 默认City类型对应<cn.itcast.demo1.City>,希望它对应<city>元素
- */
- /*
- <china>
- <province>
- <name>北京</name>
- <cities>
- <city>
- <name>东城区</name>
- <description>DongChengQu</description>
- </city>
- <city>
- <name>昌平区</name>
- <description>ChangPingQu</description>
- </city>
- </cities>
- </province>
- <province>
- <name>辽宁</name>
- <cities>
- <city>
- <name>沈阳</name>
- <description>shenYang</description>
- </city>
- <city>
- <name>葫芦岛</name>
- <description>huLuDao</description>
- </city>
- </cities>
- </province>
- </china>
- */
- @Test
- public void fun2() {
- List<Province> proList = getProinvceList();
- XStream xstream = new XStream();
- /*
- * 给指定的类型指定别名
- */
- xstream.alias("china", List.class);//给List类型指定别名为china
- xstream.alias("province", Province.class);//给Province指定别名为province
- xstream.alias("city", City.class);//给City类型指定别名为city
- String s = xstream.toXML(proList);
- System.out.println(s);
- }
- /*
- * 默认javabean的属性都会生成子元素,而现在希望生成元素的属性
- */
- /*
- <china>
- <province name="北京">
- <cities>
- <city>
- <name>东城区</name>
- <description>DongChengQu</description>
- </city>
- <city>
- <name>昌平区</name>
- <description>ChangPingQu</description>
- </city>
- </cities>
- </province>
- <province name="辽宁">
- <cities>
- <city>
- <name>沈阳</name>
- <description>shenYang</description>
- </city>
- <city>
- <name>葫芦岛</name>
- <description>huLuDao</description>
- </city>
- </cities>
- </province>
- */
- @Test
- public void fun3() {
- List<Province> proList = getProinvceList();
- XStream xstream = new XStream();
- xstream.alias("china", List.class);//给List类型指定别名为china
- xstream.alias("province", Province.class);//给Province指定别名为province
- xstream.alias("city", City.class);//给City类型指定别名为city
- /*
- * 把Province类型的name属性,生成<province>元素的属性
- */
- xstream.useAttributeFor(Province.class, "name");
- String s = xstream.toXML(proList);
- System.out.println(s);
- }
- /*
- * 去除List类型的属性,只把list中的元素生成xml元素
- */
- /*
- <china>
- <province name="北京">
- <city>
- <name>东城区</name>
- <description>DongChengQu</description>
- </city>
- <city>
- <name>昌平区</name>
- <description>ChangPingQu</description>
- </city>
- </province>
- <province name="辽宁">
- <city>
- <name>沈阳</name>
- <description>shenYang</description>
- </city>
- <city>
- <name>葫芦岛</name>
- <description>huLuDao</description>
- </city>
- </province>
- </china>
- */
- @Test
- public void fun4() {
- List<Province> proList = getProinvceList();
- XStream xstream = new XStream();
- xstream.alias("china", List.class);//给List类型指定别名为china
- xstream.alias("province", Province.class);//给Province指定别名为province
- xstream.alias("city", City.class);//给City类型指定别名为city
- xstream.useAttributeFor(Province.class, "name");//把Province类型的name属性,生成<province>元素的属性
- /*
- * 去除<cities>这样的Collection类型的属性
- * 去除Provice类的名为cities的List类型的属性!
- */
- xstream.addImplicitCollection(Province.class, "cities");
- String s = xstream.toXML(proList);
- System.out.println(s);
- }
- /**
- * 去除不想要的javabean属性
- * 就是让某引起javabean属性,不生成对应的xml元素!
- */
- /*
- <china>
- <province name="北京">
- <city>
- <name>东城区</name>
- </city>
- <city>
- <name>昌平区</name>
- </city>
- </province>
- <province name="辽宁">
- <city>
- <name>沈阳</name>
- </city>
- <city>
- <name>葫芦岛</name>
- </city>
- </province>
- </china>
- */
- @Test
- public void fun5() {
- List<Province> proList = getProinvceList();
- XStream xstream = new XStream();
- xstream.alias("china", List.class);//给List类型指定别名为china
- xstream.alias("province", Province.class);//给Province指定别名为province
- xstream.alias("city", City.class);//给City类型指定别名为city
- xstream.useAttributeFor(Province.class, "name");//把Province类型的name属性,生成<province>元素的属性
- xstream.addImplicitCollection(Province.class, "cities");//去除Provice类的名为cities的List类型的属性!
- /*
- * 让City类的,名为description属性不生成对应的xml元素
- */
- xstream.omitField(City.class, "description");
- String s = xstream.toXML(proList);
- System.out.println(s);
- }
- }
XStream(xml/bean转换)的更多相关文章
- SpringMVC关于json、xml自动转换的原理研究[附带源码分析 --转
SpringMVC关于json.xml自动转换的原理研究[附带源码分析] 原文地址:http://www.cnblogs.com/fangjian0423/p/springMVC-xml-json-c ...
- SpringMVC源码阅读:Json,Xml自动转换
1.前言 SpringMVC是目前J2EE平台的主流Web框架,不熟悉的园友可以看SpringMVC源码阅读入门,它交代了SpringMVC的基础知识和源码阅读的技巧 本文将通过源码(基于Spring ...
- Spring源码-IOC部分-Xml Bean解析注册过程【3】
实验环境:spring-framework-5.0.2.jdk8.gradle4.3.1 Spring源码-IOC部分-容器简介[1] Spring源码-IOC部分-容器初始化过程[2] Spring ...
- 项目中运行报错: Loading XML bean definitions from class path resource [applicationContext.xml]
记录一下: org.springframework.context.support.AbstractApplicationContext prepareRefresh Refreshing org.s ...
- 将bean转换成键值列表
日常开发中在进行接口对接的数据传输时,有一种场景是将bean转成jsonString,这里可以将bean转换成Map再转成jsonString. 工具类如下: public static String ...
- 利用JAXB实现java实体类和xml互相转换
1.应用场景 在使用WebService实现数据上传下载,数据查询时,可以利用JAXB实现java实体类和xml互相转换 2.Demo 2.1 student.java 实体类,包含list(set同 ...
- 将Xml字符串转换成(DataTable || DataSet || XML)对象
今天用到一个功能:就是把从数据库读出来的内容转换成XML字符串流格式,并输出给一个功能函数.在写的过程,为方便以后的使用,我对这一功能进行分装.该类的具体格式如下:XmlConvert类命名空间:Ni ...
- json串转化成xml文件、xml文件转换成json串
1.json串转化成xml文件 p=[{"name":"tom","age":30,"sex":"男" ...
- JAXB实现java对象与xml之间转换
JAXB简介: 1.JAXB能够使用Jackson对JAXB注解的支持实现(jackson-module-jaxb-annotations),既方便生成XML,也方便生成JSON,这样一来可以更好的标 ...
随机推荐
- 【转】jMeter入门实例
人们对从认识事物都有一个具体到抽象的过程,学习Jmeter也不例外,通过一个实例来进行学习,一方面可以让初学者有所见即所得的信心,另一方面,其实也是在初学者心中留下了对这事物的一个朦胧的印象,这在以后 ...
- java代码。。。圆的面积好搞人。。。不是一般的搞人。。。欢迎指点指点
package com.ll; public class Class3 { private String name; private int age; private int ...
- HTTP Get与Post请求
HTTP定义了与服务器交互的不同方法,最基本的方法有4种,分别是GET,POST,PUT,DELETE.URL全称是资源描述符,我们可以这样认为:一个URL地址,它用于描述一个网络上的资源,而HTTP ...
- node.js 获取客户端信息
结果:
- 【POJ】3616 Milking Time(dp)
Milking Time Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10898 Accepted: 4591 Des ...
- 在线pubmed
ESearch(文本搜索) eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi http://eutils.ncbi.nlm.nih.gov/entr ...
- JS的常用开发框架有哪些?
JS的开发框架有哪些? Yui-ext 基于Yahoo UI的扩展包yui-ext是具有cs风格的web用户界面组件,能实现复杂的Layou布局,界面效果可以和backbase比美,而且使用纯Java ...
- Abstract(抽象)
谈到抽象,就先谈谈面向对象语言的三大特性,也是人们口中常说的封装.继承.多态. 封装:什么是封装,按到我的理解,封装就是把某些类的相关属性和方法封装,对内实现数据影城,对外提供稳定接口. 继承:从字面 ...
- MySQL 执行 'use databases;' 时很慢
问题描述: 就是这么个情况,登录数据库切换库时感觉很卡,需要等待几秒钟. 案例: shell > mysql -uroot -ppassword mysql> use databases; ...
- spring data jpa删除的使用方式
public interface UserRepository extends CrudRepository<User, Long> { Long deleteByLastname(Str ...