xtream 示例介绍
详见:http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt271
1 xStream框架
xStream可以轻易的将Java对象和xml文档相互转换,而且可以修改某个特定的属性和节点名称,而且也支持json的转换;
官网:
http://xstream.codehaus.org/
2 about xtream
xtream 是一个简单的工具包,用来把对象序列化成xml配置文件,并且也可以把xml反序化成对象。
4Features 功能特点
简单易用,不需要配置映射,速度快并且占用内存小,生成的xml配置文件很干净,不带额外无用信息,这样在反映序列化的时候容易读取。不需要修改序列化对象的类型。支持类图。与xmlapi 整合。详细的返回错误信息。可修改的输出 显示。
4 点型应用
传输:网络传输
持久化:生成的XML可以写到文件,做持久化。
配置:XML最常用的配置文件。
单元测试
5局限
If using the enhanced mode, XStream can re-instantiate classes that do not have a default constructor. However, if using a different JVM like an old JRockit version, a JDK 1.3 or you have restrictions because of a SecurityManager, a default constructor is required.
The enhanced mode is also necessary to restore final fields for any JDK < 1.5. This implies deserialization of instances of an inner class.
Auto-detection of annotations may cause race conditions. Preprocessing annotations is safe though.
6准备一个pojo对象
Java代码
- 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
packagecom.entity;importjava.util.Date;bpublicclassStudent {privateintid;privateString name;privateString email;privateString address;privateBirthday birthday;privateDate registDate;publicDate getRegistDate() {returnregistDate;}publicvoidsetRegistDate(Date registDate) {this.registDate = registDate;}publicintgetId() {returnid;}publicvoidsetId(intid) {this.id = id;}publicString getName() {returnname;}publicvoidsetName(String name) {this.name = name;}publicString getEmail() {returnemail;}publicvoidsetEmail(String email) {this.email = email;}publicString getAddress() {returnaddress;}publicvoidsetAddress(String address) {this.address = address;}publicBirthday getBirthday() {returnbirthday;}publicvoidsetBirthday(Birthday birthday) {this.birthday = birthday;}// getter、setterpublicString toString() {returnthis.name +"#"+this.id +"#"+this.address +"#"+this.birthday +"#"+this.email;}}
7 bean 转成 xml
测试代码:
Java代码
- 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
packagecom.test;importjava.io.ObjectInputStream;importjava.io.ObjectOutputStream;importjava.util.Date;importorg.junit.Before;importorg.junit.Test;importcom.entity.Birthday;importcom.entity.Student;importcom.thoughtworks.xstream.XStream;@SuppressWarnings("unchecked")publicclassXStreamTest {privateXStream xstream =null;privateObjectOutputStream out =null;privateObjectInputStream in =null;privateStudent bean =null;@Beforepublicvoidinit() {try{xstream =newXStream();bean = getTestStudent();// xstream = new XStream(new DomDriver()); // 需要xpp3 jar}catch(Exception e) {e.printStackTrace();}}publicstaticvoidmain(String[] args) {XStreamTest test =newXStreamTest();test.init();test.testWriteBean2XML_01();}publicfinalvoidfail(String string) {System.out.println(string);}publicfinalvoidfailRed(String string) {System.err.println(string);}/*** bean 2 XML* */@TestpublicvoidtestWriteBean2XML_01() {try{fail("------------Bean->XML------------");fail(xstream.toXML(bean));}catch(Exception e) {e.printStackTrace();}}/*** 类重命名后的XML* */@TestpublicvoidtestWriteBean2XML_02() {try{fail("-----------类重命名后的XML------------");// 类重命名xstream.alias("student", Student.class);xstream.aliasField("生日", Student.class,"birthday");xstream.aliasField("生日日期", Birthday.class,"birthday");fail(xstream.toXML(bean));}catch(Exception e) {e.printStackTrace();}}/*** 类重命名后的XML* */@TestpublicvoidtestWriteBean2XML_03() {try{fail("-----------属性重命名后的XML------------");// 属性重命名xstream.aliasField("邮件", Student.class,"email");fail(xstream.toXML(bean));}catch(Exception e) {e.printStackTrace();}}/*** 包重命名后的XML* */@TestpublicvoidtestWriteBean2XML_04() {try{fail("-----------包重命名后的XML------------");//包重命名xstream.aliasPackage("modile","com.entity");fail(xstream.toXML(bean));}catch(Exception e) {e.printStackTrace();}}/*** 构造数据* */privateStudent getTestStudent() {Student bean =newStudent();bean.setAddress("china");bean.setEmail("email");bean.setId(1);bean.setName("jack");Birthday day =newBirthday();day.setBirthday("2010-11-22");bean.setBirthday(day);bean.setRegistDate(newDate());returnbean;}}
测试结果:
------------Bean->XML------------
|
1
2
3
4
5
6
7
8
9
10
|
<com.entity.Student> <id>1</id> <name>jack</name> <email>email</email> <address>china</address> <birthday> <birthday>2010-11-22</birthday> </birthday> <registDate>2011-07-11 22:33:02.359 CST</registDate> </com.entity.Student> |
-----------类重命名后的XML------------
|
1
2
3
4
5
6
7
8
9
10
|
<student> <id>1</id> <name>jack</name> <email>email</email> <address>china</address> <生日> <生日日期>2010-11-22</生日日期> </生日> <registDate>2011-07-11 22:33:02.390 CST</registDate> </student> |
-----------属性重命名后的XML------------
|
1
2
3
4
5
6
7
8
9
10
|
<com.entity.Student> <id>1</id> <name>jack</name> <邮件>email</邮件> <address>china</address> <birthday> <birthday>2010-11-22</birthday> </birthday> <registDate>2011-07-11 22:33:02.406 CST</registDate> </com.entity.Student> |
-----------包重命名后的XML------------
|
1
2
3
4
5
6
7
8
9
10
|
<modile.Student> <id>1</id> <name>jack</name> <email>e</email> <address>china</address> <birthday> <birthday>2010-11-22</birthday> </birthday> <registDate>2011-07-11 22:33:02.406 CST</registDate> </modile.Student> |
8 List 2 XML
Java代码 ![]()
- 1234567
fail("------------Listg<Strudent>->XML------------");List<Student> list =newArrayList<Student>();list.add(bean);Student s1 = getTestStudent();s1.setId(2);list.add(s1);fail(xstream.toXML(list));
结果:
------------Listg<Strudent>->XML------------
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<list> <com.entity.Student> <id>1</id> <name>jack</name> <email>email</email> <address>china</address> <birthday> <birthday>2010-11-22</birthday> </birthday> <registDate>2011-07-11 22:47:08.0 CST</registDate> </com.entity.Student> <com.entity.Student> <id>2</id> <name>jack</name> <email>email</email> <address>china</address> <birthday> <birthday>2010-11-22</birthday> </birthday> <registDate>2011-07-11 22:47:08.0 CST</registDate> </com.entity.Student> </list>
|
xtream 示例介绍的更多相关文章
- ASP.NET Web API 开篇示例介绍
ASP.NET Web API 开篇示例介绍 ASP.NET Web API 对于我这个初学者来说ASP.NET Web API这个框架很陌生又熟悉着. 陌生的是ASP.NET Web API是一个全 ...
- jQuery中$.fn的用法示例介绍
$.fn是指jquery的命名空间,加上fn上的方法及属性,会对jquery实例每一个有效,下面有个不错的示例,喜欢的朋友可以参考下 如扩展$.fn.abc(),即$.fn.abc()是对jquery ...
- HTML5标签与HTML4标签的区别示例介绍_html5教程技巧
(1)概念的变化: HTML5专注内容与结构,而不专注的表现 <header> <hgroup>导航相关数据</hgroup> </header> &l ...
- CSS鼠标响应事件经过、移动、点击示例介绍
本文为大家介绍下CSS 鼠标响应事件:鼠标经过CSS.鼠标移动CSS.鼠标点击CSS以及示例,喜欢的朋友可以参考下 几种鼠标触发CSS事件. 说明: onMouseDown 按下鼠标时触发 onM ...
- Hadoop2源码分析-YARN RPC 示例介绍
1.概述 之前在<Hadoop2源码分析-RPC探索实战>一文当中介绍了Hadoop的RPC机制,今天给大家分享关于YARN的RPC的机制.下面是今天的分享目录: YARN的RPC介绍 Y ...
- 【转】javascript 中that的含义示例介绍
var that = this;,这代表什么意思呢?this代表的是当前对象,var that=this就是将当前的this对象复制一份到that变量中,下面为大家介绍这样做有什么意义 你可能会发现别 ...
- 两个示例介绍JavaScript的闭包
JavaScript的闭包有两个用途:一个是访问函数内部的变量:另一个是让变量的值在作用域内保持不变.函数是JavaScript 中唯一有作用域的对象,因此JavaScript的闭包依赖于函数实现,下 ...
- LightningChart运行互动示例介绍
LightningChart.NET完全由GPU加速,并且性能经过优化,可用于实时显示海量数据-超过10亿个数据点. LightningChart包括广泛的2D,高级3D,Polar,Smith,3D ...
- jQuery学习之prop和attr的区别示例介绍
1..prop( propertyName ) 获取匹配集合中第一个元素的Property的值 2. .prop( propertyName, value ) .prop( map ) .prop( ...
随机推荐
- Eclipse中安装MemoryAnalyzer插件及使用
Eclipse中安装MemoryAnalyzer插件 一.简介 Eclipse作为JAVA非常好用的一款IDE,其自带的可扩展插件非常有利于JAVA程序员的工作效率提升. MemoryAnalyzer ...
- oracle 审计日志清理
--进入审计日志目录: cd $ORACLE_BASE/admin/$ORACLE_SID/adump --删除3个月前的审计文件: find ./ -type f -name "*.a ...
- Python中的可变对象和不可变对象
Python中的可变对象和不可变对象 什么是可变/不可变对象 不可变对象,该对象所指向的内存中的值不能被改变.当改变某个变量时候,由于其所指的值不能被改变,相当于把原来的值复制一份后再改变,这会开辟一 ...
- pygal的简单使用
pygal的简单使用 例子来自此书: <Python编程从入门到实战>[美]Eric Matthes pygal是一个SVG图表库.SVG是一种矢量图格式.全称Scalable Vecto ...
- Spring Boot整合Dubbo使用及开发笔记
一.概述: Spring Dubbo是我开发的一个基于spring-boot和dubbo,目的是使用Spring boot的风格来使用dubbo.(即可以了解Spring boot的启动过程又可以学习 ...
- 使用纯css3写出来的表情包 (^v^)
效果如图所示: 不多说,我们直接一个一个来写出,主要列出每个表情的结构,样式我们统一写出,基本全部会用到,颜色以及结构可以根据自己的需求来调整.(里面可是没有一张图片的哦) 页面预览:http://2 ...
- centos7源码编译安装Ansible详细部署
一.基础介绍==========================================================================================ansi ...
- 笨办法用js屏蔽被http劫持的浮动广告
最近发现网站经常在右下角弹出一个浮动广告,开始的时候以为只是浏览器的广告. 后来越来越多同事反映在家里不同浏览器也会出现广告.然后深入检查了下,发现网站竟然被劫持了. 然后百度了一大堆资料,什么htt ...
- PythonTip--一马当先--bfs
刚学python,小试牛刀 一马当先 讨论此题 | 解题报告 顶(39) (AC/Submit)Ratio(477|1829)26.08% 踩(1) 描述: 下过象棋的人都知道,马只能走'日'字形(包 ...
- Linux Command Line(II): Intermediate
Prerequisite: Linux Command Line(I): Beginner ================================ File I/O $ cat > a ...