首页>代码>精通hibernate源码>/精通hibernate源码/appendixB/src/mypack/ReflectTester.java
package mypack;
import java.lang.reflect.*;

public class ReflectTester {
  public Object copy(Object object) throws Exception{
    //获得对象的类型
    Class classType=object.getClass();
    System.out.println("Class:"+classType.getName());

    //通过默认构造方法创建一个新的对象
    Object objectCopy=classType.getConstructor(new Class[]{}).newInstance(new Object[]{});

    //获得对象的所有属性
    Field fields[]=classType.getDeclaredFields();

    for(int i=0; i<fields.length;i++){
          Field field=fields[i];

          String fieldName=field.getName();
          String firstLetter=fieldName.substring(0,1).toUpperCase();
          //获得和属性对应的getXXX()方法的名字
          String getMethodName="get"+firstLetter+fieldName.substring(1);
          //获得和属性对应的setXXX()方法的名字
          String setMethodName="set"+firstLetter+fieldName.substring(1);

          //获得和属性对应的getXXX()方法
          Method getMethod=classType.getMethod(getMethodName,new Class[]{});
          //获得和属性对应的setXXX()方法
          Method setMethod=classType.getMethod(setMethodName,new Class[]{field.getType()});

          //调用原对象的getXXX()方法
          Object value=getMethod.invoke(object,new Object[]{});
          System.out.println(fieldName+":"+value);
          //调用拷贝对象的setXXX()方法
         setMethod.invoke(objectCopy,new Object[]{value});
    }
    return objectCopy;
  }

  public static void main(String[] args) throws Exception{
    Customer customer=new Customer("Tom",21);
    customer.setId(new Long(1));

    Customer customerCopy=(Customer)new ReflectTester().copy(customer);
    System.out.println("Copy information:"+customerCopy.getName()+" "+customerCopy.getAge());

  }
}
最近下载更多
maqiang2020  LV1 2020年6月20日
cz206616  LV10 2020年6月4日
dengjunjun  LV15 2020年4月13日
caozhou  LV14 2019年3月11日
beihai98  LV1 2018年11月1日
zhaolihuiziyu  LV1 2018年9月7日
1792312911  LV17 2018年6月26日
hongzhangzhao  LV1 2017年11月17日
lwf626888  LV16 2017年9月19日
jason0943  LV11 2017年6月21日
最近浏览更多
liang85  LV1 2023年6月30日
微信网友_6186189978783744 2022年10月22日
暂无贡献等级
gxlgxl  LV4 2022年7月7日
SHUFONG  LV2 2021年12月16日
chinawind1990  LV5 2021年11月25日
blueskyroof  LV9 2021年1月12日
lt33333  LV7 2020年10月29日
南方者 2020年9月7日
暂无贡献等级
maqiang2020  LV1 2020年6月20日
cz206616  LV10 2020年6月4日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友