java 属性拷贝

在实际的应用中,总会有这样的情况:两个不同的bean对象,但是其属性字段是完全一一样的,有些应用是需要相互之间拷贝属性值得,

下面就贴个实用的copyutil类,实现属性的拷贝工作。

直接看代码:

    public static void main(String[] args) {
        
        BaseInfo source = new BaseInfo();
        source.setId("20");
        source.setCateId(1);
        source.setName("dada");
        source.setImgUrl("asdfsdfsad");
        
        BaseInfo target = new BaseInfo();
        target.setId("40");
        target.setCateId(2);
        target.setName("dadadada");        
        target.setStatus(15);
        target.setOperator("88");
        target.setIsDel(12);
        
        //copyPropertiesO(target, source);
        BaseInfo info = PersonaeBeanUtils.comBaseInfo(target, source);
        
        //结果.
        System.out.println(info.getId()+" , "+info.getCateId()+","+info.getName()+","+info.getImgUrl()+","+info.getStatus()+","+info.getOperator()+","+info.getIsDel());
        //System.out.println(source.getId()+" , "+source.getCateId()+","+source.getName()+","+source.getImgUrl()+","+source.getStatus()+","+source.getOperator()+","+source.getIsDel());
    }
    
    /**
     * 拷贝基础信息属性.
     * 通过使用spring 的beanutils对象拷贝
     * @param souceInfo:源头
     * @param targetInfo:目的
     * @return
     */
    public static Object comPersonalInfo(Object souceInfo , Object targetInfo) {
        Object info = null;
        try {
            if (souceInfo==null && targetInfo!=null) {
                info = targetInfo;
            }
            if (targetInfo==null && souceInfo!=null) {
                info =  souceInfo;
            }
            if (souceInfo!=null && targetInfo!=null) {
                info =  new PersonalInfo();
                BeanUtils.copyProperties(souceInfo, info);
                PersonalInfo tempInfo = new PersonalInfo();
                BeanUtils.copyProperties(targetInfo, tempInfo);
                PersonalInfoUtil.copyProperties(info, tempInfo);
                BeanUtils.copyProperties(tempInfo, info);
            }
        } catch(Exception e) {
            return null;
        }
        return info;
    }
    
    /**
     * 没有使用get,set方法
     * @param source
     * @param target
     */
    public static void copyPropertiesO(Object source,Object target) {
        try {
            Assert.notNull(source, "Source must not be null");
            Assert.notNull(target, "Target must not be null");
            Field[] source_fields = source.getClass().getDeclaredFields();
            for (Field field : source_fields) {
                String fieldName = field.getName();
                PropertyDescriptor sourcePd = new PropertyDescriptor(fieldName, source.getClass());
                PropertyDescriptor targetPd = new PropertyDescriptor(fieldName, target.getClass());
                if(sourcePd == null || sourcePd.getReadMethod() == null){
                    continue;
                }
                if(targetPd == null || targetPd.getWriteMethod() == null){
                    continue;
                }
                Method readMethod = sourcePd.getReadMethod();
                if(!Modifier.isPublic(readMethod.getDeclaringClass().getModifiers())){
                    readMethod.setAccessible(true);
                }
                Class<?> type =  source.getClass().getDeclaredField(fieldName).getType();
                Object value = readMethod.invoke(source, new Object[0]);
                if ((type == String.class && StringUtils.isNotBlank((String)value)) || (type != String.class && value != null)) {
                    Method writeMethod = targetPd.getWriteMethod();
                    if(!Modifier.isPublic(writeMethod.getDeclaringClass().getModifiers())){
                        writeMethod.setAccessible(true);
                    }
                    writeMethod.invoke(target, new Object[] { value });
                }
            }
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }
    
    
    
    /**
     * 利用反射实现对象之间属性复制
     * @param from
     * @param to
     */
    public static void copyProperties(Object from, Object to){
        try {
            copyPropertiesExclude(from, to, null);
        } catch (Exception e) {
        }
    }
    
    /**
     * 复制对象属性:使用了get ,set 方法.
     * @param from
     * @param to
     * @param excludsArray 排除属性列表
     * @throws Exception
     */
    @SuppressWarnings("unchecked")
    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;
        Method toMethod = null;
        String fromMethodName = null;
        String 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
     */
    @SuppressWarnings("unchecked")
    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;
    }
    
代码上比较的乱,但是一定可以使用!

瞎写写,记点东西,是点东西!!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值