摘要: 参考官方两分钟教程:http://xstream.codehaus.org/tutorial.html一、问题背景 项目中有很多需要保存XML和JSON文件的地方,现在的做法是通过字符串拼好xml或json字符串后直接保存为文件;而读取文件的时候再重新解析文件获得相应属性。此方法使代码看起来即混乱又没有可复用性,有百害而无一利。二、解决办法 xStream是一个开源的java序列化与反序列化工具,可以将java对象序列化为xml和json格式的字符串或将俩种文件反序列化为相应的对象 代码举例: 1、javaBean public class Person { private String fi 阅读全文
posted @ 2012-06-27 15:37 Crazy Eric 阅读(2594) 评论(1) 推荐(0) 编辑
摘要: Referrence:http://eduardo-lago.blogspot.de/2012/02/installing-nfs-on-centos-62.htmlThis is a how to install the NFS service on a Linux CentOS 6.2 box and making it accessible to others. The scenario is the following:Grant read-only access to the /home/public directory to all networksGrant read/write 阅读全文
posted @ 2012-06-27 00:30 Crazy Eric 阅读(1129) 评论(0) 推荐(0) 编辑