【常用类库之一—org.apache.commons.beanUtils】

来源:互联网 发布:万网买了域名能退吗 编辑:程序博客网 时间:2024/06/09 16:39

一、BeanUtils类(package org.apache.commons.beanUtils)


1.copyProperties方法,声明如下:

public static void copyProperties(Object dest, Object orig)
        throws IllegalAccessException, InvocationTargetException ;


作用:Copy property values from the origin bean to the destination bean  for all cases where the property names are the same.

0 0