首页 > 代码库 > 复制JAVABEAN中的属性到另外一个JAVABEAN中
复制JAVABEAN中的属性到另外一个JAVABEAN中
下午写了一个属性复制方法,记录如下:
class POUtil{ /** * * Function : 将一个source中的属性到复制到dest * @author : Liaokailin * CreateDate : 2014-6-30 * version : 1.0 * @param <T> * @param dest * @param source * @return * @throws IntrospectionException */ public static <T extends PO> T copyBean(T dest,PO source) throws IntrospectionException{ BeanInfo beanInfo = Introspector.getBeanInfo(dest.getClass()) ; PropertyDescriptor[] pdes = beanInfo.getPropertyDescriptors() ; for(int i = 0,length =pdes.length ;i<length ;i++ ){ PropertyDescriptor pd = pdes[i] ; // System.out.println(pd.getName()); try { PropertyDescriptor sourcePd = new PropertyDescriptor(pd.getName(), source.getClass()) ; Method sourceMethod = sourcePd.getReadMethod() ; Object result = sourceMethod.invoke(source) ; Method pdWriteMethod = pd.getWriteMethod() ; pdWriteMethod.invoke(dest, result) ; } catch (Exception e) { continue ; } } return dest ; }}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。