/**
* 通过反射,给对象赋值 * 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); } }