BeanUtils.copyProperties()
BeanUtils.copyProperties()
PropertyUtils.copyProperties()
通过反射将一个对象的值赋值个另外一个对象(前提是对象中属性的名字相同)。
后付前
PropertyUtils的copyProperties()方法几乎与BeanUtils.copyProperties()相同,主要的区别在于后者提供类型转换功能,即发现两个JavaBean的同名属性为不同类型时,在支持的数据类型范围内进行转换,BeanUtils 不支持这个功能,但是BeanUtils速度会更快一些。