博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通过反射,给对象之间赋值
阅读量:4879 次
发布时间:2019-06-11

本文共 924 字,大约阅读时间需要 3 分钟。

/**

  * 通过反射,给对象赋值
  * add by wangHao 2014-01-08
  * @param source
  * @param dest
  * @throws Exception
  */
    public  void CopyObject(Object source,Object dest)throws Exception { 
        BeanInfo sourceBean = Introspector.getBeanInfo(source.getClass(), java.lang.Object.class); 
        PropertyDescriptor[] sourceProperty = sourceBean.getPropertyDescriptors(); 
        BeanInfo destBean = Introspector.getBeanInfo(dest.getClass(), java.lang.Object.class); 
        PropertyDescriptor[] destProperty = destBean.getPropertyDescriptors(); 
        try{ 
            for(int i=0;i<sourceProperty.length;i++){ 
                 if( "id".equals(sourceProperty[i].getName())){
                    continue;
                 }
                for(int j=0;j<destProperty.length;j++){ 
                    if(sourceProperty[i].getName().equals(destProperty[j].getName())){ 
                        destProperty[j].getWriteMethod().invoke(dest, sourceProperty[i].getReadMethod().invoke(source)); 
                        break;                   
                    } 
                } 
            } 
        }catch(Exception e){ 
            throw new Exception("属性复制失败:",e); 
        } 
    }

转载于:https://www.cnblogs.com/holdon521/p/4118587.html

你可能感兴趣的文章
小白用shiro(1)
查看>>
微服务化之无状态化与容器化
查看>>
动态规划LeetCode174地下城游戏
查看>>
(十二)文件处理基础
查看>>
ubuntu 下更改分辨率
查看>>
Java 并发专题 : Semaphore 实现 互斥 与 连接池
查看>>
null值经过强转会怎样?
查看>>
Sharepoint学习笔记—Debug&TroubleShooting--Developer Dashboard的使用(3.向Assert and Critical Events段插入信息)...
查看>>
Sharepoint学习笔记—习题系列--70-573习题解析 -(Q147-Q150)
查看>>
Sublime Text 报“Pylinter could not automatically determined the path to lint.py
查看>>
Vue基础汇总
查看>>
[小技巧] gcc 编译选项-###
查看>>
0513课堂01 数组,数学函数,时间函数
查看>>
grunt对象之api
查看>>
《驻足思考》笔记
查看>>
全网最详细的Windows系统里PLSQL Developer 64bit的下载与安装过程(图文详解)
查看>>
自动化测试用例getText()获取某一个元素的值返回null或空
查看>>
大数智能未来
查看>>
virtualenv和virtualenvwrapper 的安装和使用
查看>>
MAC sublime text 无法自动补齐标签
查看>>