代码如下:
private T T getBean(T TargetBean, T SourceBean) {
if (TargetBean== null) return null;
Field[] tFields = TargetBean.getClass().getDeclaredFields();
Field[] sFields = SourceBean.getClass().getDeclaredFields();
try {
for (Field field : tFields ) {
String fieldName = field.getName();
if (fieldName.equals("serialVersionUID")) continue;
if (field.getType() == Map.class) continue;
if (field.getType() == Set.class) continue;
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/) if (field.getType() == List.class) continue;
for (Field sField : sFields) {
if(!sField .getName().equals(fieldName)){
continue;
}
Class type = field.getType();
String setName = getSetMethodName(fieldName);
Method tMethod = TargetBean.getClass().getMethod(setName, new Class[]{type});
String getName = getGetMethodName(fieldName);
Method sMethod = SourceBean.getClass().getMethod(getName, null);
Object setterValue = voMethod.invoke(SourceBean, null);
tMethod.invoke(TargetBean, new Object[]{setterValue});
}
}
} catch (Exception e) {
throw new Exception("设置参数信息发生异常", e);
}
return TargetBean;
}
该方法接收两个参数,一个是复制的源对象——要复制的对象,一个是复制的目标对象——对象副本,当然这个方法也可以在两个不同对象间使用,这时候只要目标对象和对象具有一个或多个相同类型及名称的属性,那么就会把源对象的属性值赋给目标对象的属性。