1. 程式人生 > >關於BeanUtils.copyProperties()用法和區別

關於BeanUtils.copyProperties()用法和區別

body utils apache gpo nbsp cati oid 用法 row

 這兩個類在不同的包下面,而這兩個類的copyProperties()方法裏面傳遞的參數賦值是相反的。

  例如:
  a,b為對象
  BeanUtils.copyProperties(a, b);

1、BeanUtils是org.springframework.beans.BeanUtils, a拷貝到b  

public static void copyProperties(Object source, Object target)//source 源文件,target 目標文件
        throws BeansException
    {
        copyProperties(source, target, 
null, (String[])null); }

2、BeanUtils是org.apache.commons.beanutils.BeanUtils,b拷貝到a

public static void copyProperties(Object dest, Object orig)//dest目標文件,original源文件
        throws IllegalAccessException, InvocationTargetException
    {
        BeanUtilsBean.getInstance().copyProperties(dest, orig);
    }

關於BeanUtils.copyProperties()用法和區別