Java -- 利用反射实现对象之间相同属性复制BeanUtil

package com.redhorse.util;

import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;

import com.redhorse.consts.Const;
import com.redhorse.entity.assets.base.CapitalDetailBeanBase;

/**
 * 此工具类,用于老架构Bean 数据转换到 新架构(SOA)Bean <br>
 * 如com.redhorse.bean.CapitalDetailBean 转换为 
 * com.redhorse.base.entity.BaseEntity.CapitalDetailBeanBase <br>
 * 
 * @author GaoPeng
 *
 */
public class BeanUtil {
    /**
     * 利用反射实现对象之间相同属性复制
     * 
     * @param source
     *            要复制的
     * @param to
     *            复制给
     */
    public static void copyProperties(Object source, Object target) throws Exception {

        copyPropertiesExclude(source, target, null);
    }

    /**
     * 复制对象属性
     * 
     * @param from
     * @param to
     * @param excludsArray
     *            排除属性列表
     * @throws Exception
     */
    public static void copyPropertiesExclude(Object from, Object to, String[] excludsArray) throws Exception {

        List<String> excludesList = null;

        if (excludsArray != null && excludsArray.length > 0) {

            excludesList = Arrays.asList(excludsArray); // 构造列表对象
        }

        Method[] fromMethods = from.getClass().getDeclaredMethods();
        Method[] toMethods = to.getClass().getDeclaredMethods();
        Method fromMethod = null, toMethod = null;
        String fromMethodName = null, toMethodName = null;

        for (int i = 0; i < fromMethods.length; i++) {

            fromMethod = fromMethods[i];
            fromMethodName = fromMethod.getName();

            if (!fromMethodName.contains("get"))
                continue;
            // 排除列表检测
            if (excludesList != null && excludesList.contains(fromMethodName.substring(3).toLowerCase())) {

                continue;
            }
            toMethodName = "set" + fromMethodName.substring(3);
            toMethod = findMethodByName(toMethods, toMethodName);

            if (toMethod == null)
                continue;
            Object value = fromMethod.invoke(from, new Object[0]);

            if (value == null)
                continue;
            // 集合类判空处理
            if (value instanceof Collection) {

                Collection<?> newValue = (Collection<?>) value;

                if (newValue.size() <= 0)
                    continue;
            }

            toMethod.invoke(to, new Object[] { value });
        }
    }

    /**
     * 对象属性值复制,仅复制指定名称的属性值
     * 
     * @param from
     * @param to
     * @param includsArray
     * @throws Exception
     */
    public static void copyPropertiesInclude(Object from, Object to, String[] includsArray) throws Exception {

        List<String> includesList = null;

        if (includsArray != null && includsArray.length > 0) {

            includesList = Arrays.asList(includsArray);

        } else {

            return;
        }
        Method[] fromMethods = from.getClass().getDeclaredMethods();
        Method[] toMethods = to.getClass().getDeclaredMethods();
        Method fromMethod = null, toMethod = null;
        String fromMethodName = null, toMethodName = null;

        for (int i = 0; i < fromMethods.length; i++) {

            fromMethod = fromMethods[i];
            fromMethodName = fromMethod.getName();

            if (!fromMethodName.contains("get"))
                continue;

            // 排除列表检测
            String str = fromMethodName.substring(3);

            if (!includesList.contains(str.substring(0, 1).toLowerCase() + str.substring(1))) {
                continue;
            }

            toMethodName = "set" + fromMethodName.substring(3);
            toMethod = findMethodByName(toMethods, toMethodName);

            if (toMethod == null)
                continue;

            Object value = fromMethod.invoke(from, new Object[0]);

            if (value == null)
                continue;

            // 集合类判空处理
            if (value instanceof Collection) {

                Collection<?> newValue = (Collection<?>) value;

                if (newValue.size() <= 0)
                    continue;
            }

            toMethod.invoke(to, new Object[] { value });
        }
    }

    /**
     * 从方法数组中获取指定名称的方法
     * 
     * @param methods
     * @param name
     * @return
     */
    public static Method findMethodByName(Method[] methods, String name) {

        for (int j = 0; j < methods.length; j++) {

            if (methods[j].getName().equals(name)) {

                return methods[j];
            }

        }
        return null;
    }

    public static void main(String[] args) {

        com.redhorse.bean.CapitalDetailBean c = new com.redhorse.bean.CapitalDetailBean();
        c.setAmount(Long.parseLong("1000"));
        c.setUserId(308850);
        c.setCapitaDirection(1);
        c.setType(Const.CAPITAL_DETAIL_TYPE_EXPECT_FEE_F);
        c.setCurrency(1);
        c.setFlag(1);
        c.setRemarks("junit test");
        c.setId(1);

        CapitalDetailBeanBase c1 = new CapitalDetailBeanBase();

        try {
            copyPropertiesExclude(c, c1, null);

            System.out.println(c1.toString());
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java中,我们可以使用BeanUtils库中的方法来判断一个对象是否为空。这个方法可以判断对象的所有属性值是否都为null或者空字符串。具体的实现可以参考以下代码: ```java import org.apache.commons.beanutils.BeanUtils; import org.apache.commons.lang.StringUtils; public static <T> Boolean addOrEditFlag(Class<? extends T> aClass, T aa) throws Exception { boolean flag = true; T t = aClass.cast(aa); for (Field declaredField : aClass.getDeclaredFields()) { // 排除对象中序列化字段 if("serialVersionUID".equals(declaredField.getName())) continue; if(StringUtils.isNotBlank(BeanUtils.getProperty(t, declaredField.getName()))){ flag = false; break; } } return flag; } ``` 这个方法使用了BeanUtils库中的`getProperty`方法来获取对象属性值,并使用StringUtils库中的`isNotBlank`方法来判断属性值是否不为空。如果所有属性值都为空,则返回true,否则返回false。你可以将这个方法添加到你的代码中,然后通过调用`addOrEditFlag`方法来判断一个对象是否为空。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [判断一个对象属性值是否全部为 null 或空字符串](https://blog.csdn.net/weixin_46160739/article/details/126427171)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* *3* [总结java中判断对象是否为空的方法](https://blog.csdn.net/weixin_35867815/article/details/114097496)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值