XStream

1. 什么作用
  * 可以把JavaBean转换为(序列化为)xml

2. XStream的jar包
  * 核心JAR包:xstream-1.4.7.jar;
  * 必须依赖包:xpp3_min-1.1.4c(XML Pull Parser,一款速度很快的XML解析器);
3. 使用步骤
  * XStream xstream = new XStream();
  * String xmlStr = xstream.toXML(javabean);
4. 使用细节
  * 别名:把类型对应的元素名修改了
    > 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的对应的元素!

具体实例

  1. package cn.itcast.demo1;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import org.junit.Test;
  5. import com.thoughtworks.xstream.XStream;
  6. /**
  7. * 演示XStream
  8. * @author cxf
  9. *
  10. */
  11. public class Demo1 {
  12. // 返回javabean集合
  13. public List<Province> getProinvceList() {
  14. Province p1 = new Province();
  15. p1.setName("北京");
  16. p1.addCity(new City("东城区", "DongChengQu"));
  17. p1.addCity(new City("昌平区", "ChangPingQu"));
  18. Province p2 = new Province();
  19. p2.setName("辽宁");
  20. p2.addCity(new City("沈阳", "shenYang"));
  21. p2.addCity(new City("葫芦岛", "huLuDao"));
  22. List<Province> provinceList = new ArrayList<Province>();
  23. provinceList.add(p1);
  24. provinceList.add(p2);
  25. return provinceList;
  26. }
  27. /**
  28. <list> --> List类型显示list
  29. <cn.itcast.demo1.Province> --> javabean的类型为Province,它元素的名称为类的完整名
  30. <name>北京</name> --> javabean的属性名
  31. <cities> --> javabean的属性名
  32. <cn.itcast.demo1.City> --> 类名
  33. <name>东城区</name> --> 属性名
  34. <description>DongChengQu</description> --> 属性名
  35. </cn.itcast.demo1.City>
  36. <cn.itcast.demo1.City>
  37. <name>昌平区</name>
  38. <description>ChangPingQu</description>
  39. </cn.itcast.demo1.City>
  40. </cities>
  41. </cn.itcast.demo1.Province>
  42. <cn.itcast.demo1.Province>
  43. <name>辽宁</name>
  44. <cities>
  45. <cn.itcast.demo1.City>
  46. <name>沈阳</name>
  47. <description>shenYang</description>
  48. </cn.itcast.demo1.City>
  49. <cn.itcast.demo1.City>
  50. <name>葫芦岛</name>
  51. <description>huLuDao</description>
  52. </cn.itcast.demo1.City>
  53. </cities>
  54. </cn.itcast.demo1.Province>
  55. </list>
  56. */
  57. @Test
  58. public void fun1() {
  59. List<Province> proList = getProinvceList();
  60. /*
  61. * 创建XStream对象
  62. * 调用toXML把集合转换成xml字符串
  63. */
  64. XStream xstream = new XStream();
  65. String s = xstream.toXML(proList);
  66. System.out.println(s);
  67. }
  68. /*
  69. * 别名(alias)
  70. * 希望:
  71. * * 默认List类型对应<list>元素,希望让List类型对应<china>元素
  72. * * 默认Province类型对应<cn.itcast.demo1.Province>,希望让它对应<province>
  73. * * 默认City类型对应<cn.itcast.demo1.City>,希望它对应<city>元素
  74. */
  75. /*
  76. <china>
  77. <province>
  78. <name>北京</name>
  79. <cities>
  80. <city>
  81. <name>东城区</name>
  82. <description>DongChengQu</description>
  83. </city>
  84. <city>
  85. <name>昌平区</name>
  86. <description>ChangPingQu</description>
  87. </city>
  88. </cities>
  89. </province>
  90. <province>
  91. <name>辽宁</name>
  92. <cities>
  93. <city>
  94. <name>沈阳</name>
  95. <description>shenYang</description>
  96. </city>
  97. <city>
  98. <name>葫芦岛</name>
  99. <description>huLuDao</description>
  100. </city>
  101. </cities>
  102. </province>
  103. </china>
  104. */
  105. @Test
  106. public void fun2() {
  107. List<Province> proList = getProinvceList();
  108. XStream xstream = new XStream();
  109. /*
  110. * 给指定的类型指定别名
  111. */
  112. xstream.alias("china", List.class);//给List类型指定别名为china
  113. xstream.alias("province", Province.class);//给Province指定别名为province
  114. xstream.alias("city", City.class);//给City类型指定别名为city
  115. String s = xstream.toXML(proList);
  116. System.out.println(s);
  117. }
  118. /*
  119. * 默认javabean的属性都会生成子元素,而现在希望生成元素的属性
  120. */
  121. /*
  122. <china>
  123. <province name="北京">
  124. <cities>
  125. <city>
  126. <name>东城区</name>
  127. <description>DongChengQu</description>
  128. </city>
  129. <city>
  130. <name>昌平区</name>
  131. <description>ChangPingQu</description>
  132. </city>
  133. </cities>
  134. </province>
  135. <province name="辽宁">
  136. <cities>
  137. <city>
  138. <name>沈阳</name>
  139. <description>shenYang</description>
  140. </city>
  141. <city>
  142. <name>葫芦岛</name>
  143. <description>huLuDao</description>
  144. </city>
  145. </cities>
  146. </province>
  147. */
  148. @Test
  149. public void fun3() {
  150. List<Province> proList = getProinvceList();
  151. XStream xstream = new XStream();
  152. xstream.alias("china", List.class);//给List类型指定别名为china
  153. xstream.alias("province", Province.class);//给Province指定别名为province
  154. xstream.alias("city", City.class);//给City类型指定别名为city
  155. /*
  156. * 把Province类型的name属性,生成<province>元素的属性
  157. */
  158. xstream.useAttributeFor(Province.class, "name");
  159. String s = xstream.toXML(proList);
  160. System.out.println(s);
  161. }
  162. /*
  163. * 去除List类型的属性,只把list中的元素生成xml元素
  164. */
  165. /*
  166. <china>
  167. <province name="北京">
  168. <city>
  169. <name>东城区</name>
  170. <description>DongChengQu</description>
  171. </city>
  172. <city>
  173. <name>昌平区</name>
  174. <description>ChangPingQu</description>
  175. </city>
  176. </province>
  177. <province name="辽宁">
  178. <city>
  179. <name>沈阳</name>
  180. <description>shenYang</description>
  181. </city>
  182. <city>
  183. <name>葫芦岛</name>
  184. <description>huLuDao</description>
  185. </city>
  186. </province>
  187. </china>
  188. */
  189. @Test
  190. public void fun4() {
  191. List<Province> proList = getProinvceList();
  192. XStream xstream = new XStream();
  193. xstream.alias("china", List.class);//给List类型指定别名为china
  194. xstream.alias("province", Province.class);//给Province指定别名为province
  195. xstream.alias("city", City.class);//给City类型指定别名为city
  196. xstream.useAttributeFor(Province.class, "name");//把Province类型的name属性,生成<province>元素的属性
  197. /*
  198. * 去除<cities>这样的Collection类型的属性
  199. * 去除Provice类的名为cities的List类型的属性!
  200. */
  201. xstream.addImplicitCollection(Province.class, "cities");
  202. String s = xstream.toXML(proList);
  203. System.out.println(s);
  204. }
  205. /**
  206. * 去除不想要的javabean属性
  207. * 就是让某引起javabean属性,不生成对应的xml元素!
  208. */
  209. /*
  210. <china>
  211. <province name="北京">
  212. <city>
  213. <name>东城区</name>
  214. </city>
  215. <city>
  216. <name>昌平区</name>
  217. </city>
  218. </province>
  219. <province name="辽宁">
  220. <city>
  221. <name>沈阳</name>
  222. </city>
  223. <city>
  224. <name>葫芦岛</name>
  225. </city>
  226. </province>
  227. </china>
  228. */
  229. @Test
  230. public void fun5() {
  231. List<Province> proList = getProinvceList();
  232. XStream xstream = new XStream();
  233. xstream.alias("china", List.class);//给List类型指定别名为china
  234. xstream.alias("province", Province.class);//给Province指定别名为province
  235. xstream.alias("city", City.class);//给City类型指定别名为city
  236. xstream.useAttributeFor(Province.class, "name");//把Province类型的name属性,生成<province>元素的属性
  237. xstream.addImplicitCollection(Province.class, "cities");//去除Provice类的名为cities的List类型的属性!
  238. /*
  239. * 让City类的,名为description属性不生成对应的xml元素
  240. */
  241. xstream.omitField(City.class, "description");
  242. String s = xstream.toXML(proList);
  243. System.out.println(s);
  244. }
  245. }

XStream(xml/bean转换)的更多相关文章

  1. SpringMVC关于json、xml自动转换的原理研究[附带源码分析 --转

    SpringMVC关于json.xml自动转换的原理研究[附带源码分析] 原文地址:http://www.cnblogs.com/fangjian0423/p/springMVC-xml-json-c ...

  2. SpringMVC源码阅读:Json,Xml自动转换

    1.前言 SpringMVC是目前J2EE平台的主流Web框架,不熟悉的园友可以看SpringMVC源码阅读入门,它交代了SpringMVC的基础知识和源码阅读的技巧 本文将通过源码(基于Spring ...

  3. Spring源码-IOC部分-Xml Bean解析注册过程【3】

    实验环境:spring-framework-5.0.2.jdk8.gradle4.3.1 Spring源码-IOC部分-容器简介[1] Spring源码-IOC部分-容器初始化过程[2] Spring ...

  4. 项目中运行报错: Loading XML bean definitions from class path resource [applicationContext.xml]

    记录一下: org.springframework.context.support.AbstractApplicationContext prepareRefresh Refreshing org.s ...

  5. 将bean转换成键值列表

    日常开发中在进行接口对接的数据传输时,有一种场景是将bean转成jsonString,这里可以将bean转换成Map再转成jsonString. 工具类如下: public static String ...

  6. 利用JAXB实现java实体类和xml互相转换

    1.应用场景 在使用WebService实现数据上传下载,数据查询时,可以利用JAXB实现java实体类和xml互相转换 2.Demo 2.1 student.java 实体类,包含list(set同 ...

  7. 将Xml字符串转换成(DataTable || DataSet || XML)对象

    今天用到一个功能:就是把从数据库读出来的内容转换成XML字符串流格式,并输出给一个功能函数.在写的过程,为方便以后的使用,我对这一功能进行分装.该类的具体格式如下:XmlConvert类命名空间:Ni ...

  8. json串转化成xml文件、xml文件转换成json串

    1.json串转化成xml文件 p=[{"name":"tom","age":30,"sex":"男" ...

  9. JAXB实现java对象与xml之间转换

    JAXB简介: 1.JAXB能够使用Jackson对JAXB注解的支持实现(jackson-module-jaxb-annotations),既方便生成XML,也方便生成JSON,这样一来可以更好的标 ...

随机推荐

  1. Netty--使用TCP协议传输文件

    简介: 用于将文件通过TCP协议传输到另一台机器,两台机器需要通过网络互联. 实现: 使用Netty进行文件传输,服务端读取文件并将文件拆分为多个数据块发送,接收端接收数据块,并按顺序将数据写入文件. ...

  2. bzoj 1023: [SHOI2008]cactus仙人掌图 2125: 最短路 4728: 挪威的森林 静态仙人掌上路径长度的维护系列

    %%% http://immortalco.blog.uoj.ac/blog/1955 一个通用的写法是建树,对每个环建一个新点,去掉环上的边,原先环上每个点到新点连边,边权为点到环根的最短/长路长度 ...

  3. log4j示例-Daily方式(log4j.properties)

    log_home=./log log4j.rootLogger=info log4j.category.com.ai.toptea.collection=Console,DailyFile,Daily ...

  4. 020:Buffer Pool 、压缩页、CheckPoint、Double Write、Change Buffer

    一. 缓冲池(Buffer Pool) 1.1 缓冲池介绍 每次读写数据都是通过 Buffer Pool : 当Buffer Pool 中没有用户所需要的数据时,才去硬盘中获取: 通过 innodb_ ...

  5. PyQt5对话框

    QinputDialog 输入的值可以是字符串,数字,或者一个项目从一个列表 def showDialog(self): text, ok = QInputDialog.getText(self, ' ...

  6. 论 html与css的关系

    一.网页前端三剑客基础介绍 1-1 Html和CSS的关系学习web前端开发基础技术需要掌握:HTML.CSS.JavaScript语言.下面我们就来了解下这三门技术都是用来实现什么的: 1. HTM ...

  7. 12.solr学习速成之dataimport

    solr除了利用solrj建立索引外,还可以由列式数据库hbase触发器添加索引,自动全量或者增量索引关系数据库数据等. dataimport可以配置从任何关系数据库导入索引 1.将jar包拷贝到to ...

  8. Oracle11gR2-聚簇因子浅析

    创建表t1,t2 SQL> conn n1/n1 Connected. SQL> SQL> SQL> create table t1 as select trunc(rownu ...

  9. jaegeropentracing的Java-client

    关于jaegeropentracing的Java-client做记录如下: 1.依赖jar包 <!-- 以下jar包是jaegeropentracing依赖的日志jar -->slf4j- ...

  10. map的访问

    映射表(map) 在每个条目被插入时将之按键进行排序.取迭代器指向值时将返回value_type结构,它有两个数据成员:first,second.访问first获得键的数据,访问second获得值的数 ...