package com.brmoney.util.obj2xml;

import java.util.Iterator;
import java.util.List; import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;
import org.dom4j.Element; import com.brmoney.flight.pojo.DomeTicketPsg;
import com.brmoney.util.resource.FieldResourceBundle;
import com.thoughtworks.xstream.XStream;
import com.thoughtworks.xstream.io.xml.DomDriver;
import com.thoughtworks.xstream.converters.Converter; public class Object2Xml { static DomDriver domDriver = null;
static Converter xmlNullConverter = null; static {
domDriver = new DomDriver();
xmlNullConverter = new XmlNullConverter();
} public static String compare2Object(Object obj1, Object obj2)
throws DocumentException {
XStream stream = new XStream(domDriver);
stream.registerConverter(xmlNullConverter);
String xml1 = stream.toXML(obj1);
String xml2 = stream.toXML(obj2); Document doc1 = DocumentHelper.parseText(xml1);
Document doc2 = DocumentHelper.parseText(xml2); StringBuffer buffer = new StringBuffer();
List<Element> elements = doc1.selectNodes(obj1.getClass().getName());
List<Element> unElements = doc2.selectNodes(obj1.getClass().getName());
for (int i = 0; i < elements.size(); i++) {
Element rootElement = elements.get(i);
Element unRootElement = unElements.get(i);
if (rootElement != null && unRootElement != null) {
Iterator eles = rootElement.elementIterator();
Iterator unEles = unRootElement.elementIterator();
while (eles.hasNext() && unEles.hasNext()) {
Element e = (Element) eles.next();
Element ue = (Element) unEles.next();
if (e.getName().equals(ue.getName())
&& !e.getTextTrim().equals(ue.getTextTrim())) {
String[] config = FieldResourceBundle.getMessage(
e.getName(), obj1.getClass().getSimpleName())
.split("[|]");
if (config[0] != null) {
buffer.append(config[0]).append(":").append("由")
.append(e.getTextTrim()).append(
"  更改为:  ")
.append(ue.getTextTrim()).append("\n");
}
}
}
} }
return buffer.toString();
} public static void main(String[] args) throws DocumentException {
DomeTicketPsg psg1 = new DomeTicketPsg();
psg1.setPsgName("项羽");
DomeTicketPsg psg2 = new DomeTicketPsg();
psg2.setPsgName("刘备"); System.out.print(Object2Xml.compare2Object(psg1, psg2)); } }

  

package com.brmoney.util.obj2xml;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.text.DateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map; import com.thoughtworks.xstream.converters.Converter;
import com.thoughtworks.xstream.converters.MarshallingContext;
import com.thoughtworks.xstream.converters.UnmarshallingContext;
import com.thoughtworks.xstream.io.HierarchicalStreamReader;
import com.thoughtworks.xstream.io.HierarchicalStreamWriter; /**
* 自定义XStream转化器,
* 使null值标签可以输出到XML
*/
@SuppressWarnings("unchecked")
public class XmlNullConverter implements Converter
{ private Map<Class<?>, List<String>> attributes = null; public void regAttribute(Class<?> type, String attribute)
{
if (null == attributes)
{
attributes = new HashMap<Class<?>, List<String>>();
} List value = attributes.get(type);
if (null == value)
{
value = new ArrayList<String>();
attributes.put(type, value);
} value.add(attribute);
} /**
* 是否是属性(是属性的不用以单独标签实现)
* @param type
* @param attribute
* @return
*/
private boolean isClassAttribute(Class<?> type, String attribute)
{
List<String> value = getAttributes(type);
if (null == value)
return false;
if (value.contains(attribute))
{
return true;
}
return false;
} /**
* 获取注册的属性
* @param type
* @return
*/
private List<String> getAttributes(Class<?> type)
{
if (null != attributes)
{
return attributes.get(type);
}
return null;
} /**
* 输出对象的属性标签
* @param source
* @param writer
*/
private void writerAttribute(Object source, HierarchicalStreamWriter writer)
{
Class cType = source.getClass();
List<String> value = getAttributes(cType);
if ((null != value) && (value.size() > 0))
{
Method[] methods = cType.getMethods();
for (Method method : methods)
{
String methodName = method.getName();
if (methodName.indexOf("get") != -1 && methodName != "getClass")
{
String name = methodName.substring(3);
//首字母小写
name = name.substring(0, 1).toLowerCase()+name.substring(1);
if (value.contains(name))
{
Object o = null;
try {
o = method.invoke(source, null);
} catch (Exception e) {
e.printStackTrace();
}
writer.addAttribute(name, o==null?"":o.toString());
}
}
}
}
} public void marshal(Object source, HierarchicalStreamWriter writer,
MarshallingContext context)
{
if (null == source)
return;
if (isBaseType(source.getClass()))
{
return;
}
Class cType = source.getClass();
Method[] methods = cType.getMethods();
writerAttribute(source, writer);
for(Method m : methods)
{
String methodName = m.getName();
if (methodName.indexOf("get") != -1 && methodName != "getClass")
{
if (source instanceof List)
{
List list = (List)source;
for (Object obj: list)
{
String name = obj.getClass().toString();
name = name.substring(name.lastIndexOf(".") + 1); writer.startNode(name);
marshal(obj, writer, context);
writer.endNode();
}
}
else
{
boolean isBaseType = isBaseType(m.getReturnType());
String name = methodName.substring(3);
if (isBaseType)
{
name = name.substring(0, 1).toLowerCase()+name.substring(1);
}
Object o = null;
try
{
o = m.invoke(source, null);
} catch (IllegalArgumentException e)
{
e.printStackTrace();
} catch (IllegalAccessException e)
{
e.printStackTrace();
} catch (InvocationTargetException e)
{
e.printStackTrace();
}
//如果是基本类型调用toString,否则递归
if (isBaseType)
{
if (!isClassAttribute(cType, name))
{
writer.startNode(name);
if (m.getReturnType().equals(Date.class)&&o!=null&&!"".equals(o.toString()))
{
Date date = (Date)o;
DateFormat formatter = DateFormat.getDateInstance(DateFormat.FULL,new Locale("zh", "CN"));
writer.setValue(formatter.format(date));
}else{
writer.setValue(o==null?"":o.toString());
}
writer.endNode();
}
}
else
{
writer.startNode(name);
marshal(o, writer, context);
writer.endNode();
}
}
}
}
} public Object unmarshal(HierarchicalStreamReader reader,
UnmarshallingContext context) {
return null;
} public boolean canConvert(Class type) {
return true;
} private boolean isBaseType(Class<?> type)
{
if (type.equals(Integer.class)
|| type.equals(Double.class)
|| type.equals(String.class)
|| type.equals(Boolean.class)
|| type.equals(Long.class)
||type.equals(Short.class)
||type.equals(Byte.class)
||type.equals(Float.class)
||type.equals(Date.class))
{
return true;
}
return false;
}
}

  

package com.brmoney.util.resource;

import java.util.Locale;
import java.util.ResourceBundle; public class FieldResourceBundle { private static String baseKey = "datafield/"; public static String getMessage(String key,String propName){
Locale locale = new Locale("zh", "CN");
ResourceBundle bundle = ResourceBundle.getBundle(baseKey+propName, locale);
if(bundle.containsKey(key)){
return bundle.getString(key);
}
return "";
} }

  

xstream+dom4j比较对象的更多相关文章

  1. XStream将java对象转换为xml时,对象字段中的下划线“_”,转换后变成了两个的解决办法

            在前几天的一个项目中,由于数据库字段的命名原因 其中有两项:一项叫做"市场价格"一项叫做"商店价格" 为了便于区分,遂分别将其命名为market ...

  2. Java对象表示方式2:XStream实现对对象的XML化

    上一篇文章讲到了使用Java原生的序列化的方式来表示一个对象.总结一下这种对象表示方式的优缺点: 1.纯粹的Java环境下这种方式可以很好地工作,因为它是Java自带的,也不需要第三方的Jar包的支持 ...

  3. XStream转换Java对象与XML

    1.引入需要的jar包,在pom.xml中配置依赖 <dependency> <groupId>com.thoughtworks.xstream</groupId> ...

  4. XStream类的对象将javaBean转成XML

    [省市联动] servlet端: //返回数据xml(XStream) XStream xStream = new XStream(); //把路径设置别名 xStream.alias("c ...

  5. Spring Boot 使用 Dom4j XStream 操作 Xml

    Xml 现在仍然占据着比较重要的地位,比如微信接口中使用了 Xml 进行消息的定义.本章重点讨论 Xml 的新建.编辑.查找.转化,可以这么理解,本章是使用了 dom4j.xstream 也是在开发者 ...

  6. 使用XStream是实现XML与Java对象的转换(6)--持久化

    九.持久化 在第八节的示例中,当我们操作一组对象时,我们可以指定Writer.OutputStream来写出序列化后的XML数据,我们还可以指定Reader.InputStream来读取序列化后的XM ...

  7. 使用XStream是实现XML与Java对象的转换(1)--简介及入门示例

    一.简单介绍 XStream是thoughtworks开发的开源框架,用于实现XML数据于Java对象.Json数据的转换.它不需要schema或其他的mapping文件就可以进行java对象和xml ...

  8. Javaweb学习笔记——(二十三)——————AJAX、XStream、JSON

    AJAX概述     1.什么是AJAX         ajax(Asynchronous JavaScript and xml) 翻译成中文就是"异步JavaScript和xml&quo ...

  9. atitit.XML类库选型及object 对象bean 跟json转换方案

    atitit.XML类库选型及object 对象bean 跟json转换方案 1. XML类库可以分成2大类.标准的.这些类库通常接口和实现都是分开的 1 2. 常见的xml方面的方法 2 2.1.  ...

随机推荐

  1. js 对象字面量

    对象字面量的输出方式以及定义好处 1.对象字面量的输出方式有两种:传统的'.' 例如:box.name 以及数组方式,只不过用数组方式输出时,方括号里面要用引号括起来 例如:box['name'] v ...

  2. [转载]AngularJS入门教程00:引导程序

    我们现在开始准备编写AngularJS应用——phonecat.这一步骤(步骤0),您将会熟悉重要的源代码文件,学习启动包含AngularJS种子项目的开发环境,并在浏览器端运行应用. 进入angul ...

  3. 【洛谷2152】[SDOI2009] SuperGCD(Python好题)

    点此看题面 大致题意: 给你两个长度\(\le10000\)的正整数,让你求它们的\(gcd\). Python​ 高精请绕道. 这题的正解应该是Python. 对于这种高精题,肯定是Python最方 ...

  4. Java 发送 Http请求工具类

    HttpClient.java package util; import java.io.BufferedReader; import java.io.IOException; import java ...

  5. 零基础快速入门SpringBoot2.0教程 (三)

    一.SpringBoot Starter讲解 简介:介绍什么是SpringBoot Starter和主要作用 1.官网地址:https://docs.spring.io/spring-boot/doc ...

  6. Springboot端口设置

    application.properties 加入 server.port=80

  7. vue 项目中使用mock假数据实现前后端分离

    也是查了很多的资料,整理出来.实现了前后端的分离,用到的技术vue-cli,webpack,node,json-server.首先全局安装json-server cnpm i json-server ...

  8. yii2 基本的增删改查

    一:添加方法 1.1 使用成员属性的方式 save $user_name = $_POST['user_name']; $password = $_POST['password']; //实例化 $u ...

  9. linux 的安装

    3linux 软件安装 3.1 vm ware 软件安装 双击VMware-workstation-full-10.0.2-1744117.1398244508.exe 单击下一步 单击下一步 选择典 ...

  10. Java开发学生管理系统

    Java 学生管理系统 使用JDBC了链接本地MySQL 数据库,因此在没有建立好数据库的情况下没法成功运行 (数据库部分, Java界面部分, JDBC部分) 资源下载: http://downlo ...