其他分享
首页 > 其他分享> > 判断相同对象的属性值是否相同

判断相同对象的属性值是否相同

作者:互联网

https://www.jianshu.com/p/cc9f95792fd3
有时候我们需要对两个对象的属性值进行一些比较操作,例如在做一些保存操作时判断是否有属性被修改等。
那么你可以将以下代码进行一些修改作为一个工具类来使用。
其中Pojo为你自己定义的对象类型,根据需求进行修改即可。

package com.xxl.job.executor.service.util;

import com.xxl.job.executor.service.entity.User1;

import java.beans.PropertyDescriptor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;

/**
 * @Author cxy
 * @Date 2022/3/8 11:01
 * @Version 1.0
 */
public class CompareObj {
    /**
     * 比较两个实体属性值,返回一个map以有差异的属性名为key,value为一个Map分别存oldObject,newObject此属性名的值
     *
     * @param obj1 进行属性比较的对象1
     * @param obj2 进行属性比较的对象2
     */
    public static boolean contrastObj(Object obj1, Object obj2) {
        boolean isEquals = true;
        if (obj1 instanceof User1 && obj2 instanceof User1) {
            User1 pojo1 = (User1) obj1;
            User1 pojo2 = (User1) obj2;
            List textList = new ArrayList<String>();
            try {
                Class clazz = pojo1.getClass();
                Field[] fields = pojo1.getClass().getDeclaredFields();
                for (Field field : fields) {
                    PropertyDescriptor pd = new PropertyDescriptor(field.getName(), clazz);
                    Method getMethod = pd.getReadMethod();
                    Object o1 = getMethod.invoke(pojo1);
                    Object o2 = getMethod.invoke(pojo2);
                    if (o1 == null && o2 != null || o1 != null && o2 == null) {
                        isEquals = false;
                        textList.add(getMethod.getName() + ":" + "false");
                    } else if (o1 == null && o2 == null) {
//                        textList.add(getMethod.getName() + ":" + "true");
                    } else if (!o1.toString().equals(o2.toString())) {
                        isEquals = false;
                        textList.add(getMethod.getName() + ":" + "false");
                    } else {
//                        textList.add(getMethod.getName() + ":" + "true");
                    }
                }
            } catch (Exception e) {

            }
//            for (Object object : textList) {
//                System.out.println(object);
//            }
        }
        return isEquals;
    }
}


标签:相同,User1,对象,getMethod,import,null,textList,属性
来源: https://www.cnblogs.com/xiaomaixiaomai/p/15979930.html