利用Spring框架的BeanUtils实现
代码如下:
/**
* 获取到对象中属性为null的属性名
* @param source
* @return 要拷贝的对象
*/
private static String[] getNullPropertyNames(Object source) {
final BeanWrapper src = new BeanWrapperImpl(source);
//获取包装对象的PropertyDescriptors
java.beans.PropertyDescriptor[] pds = src.getPropertyDescriptors();
Set<String> emptyNames = new HashSet<String>();
for (java.beans.PropertyDescriptor pd : pds) {
//获取属性值为空的属性名
Object srcValue = src.getPropertyValue(pd.getName());
if (srcValue == null)
emptyNames.add(pd.getName());
}
String[] result = new String[emptyNames.size()];
return emptyNames.toArray(result);
}
/**
* 拷贝对象非空属性值
* @param source 原对象
* @param target 目标对象
*/
public static void copyPropertie