Share a JavaBean object attribute clone class, super easy to use

One, the code piece

Share a JavaBean object attribute clone class, directly on the code:

package com.standard.commonutil.util;

import java.util.ArrayList;
import java.util.List;

/**
 * <pre>
 * 对象属性克隆类
 * </pre>
 */
public class BeanClone {
    
    

    public static <T, K> K clone(T po, Class<K> clz) {
    
    
        try {
    
    
            if (po != null) {
    
    
                K k = clz.newInstance();
                PropertyClone.copyProperties(k, po, true);
                return k;
            }
        } catch (Exception ex) {
    
    
            throw new RuntimeException(ex.getMessage());
        }
        return null;
    }

    public static <T, K> List<K> clone(List<T> tlist, Class<K> clz) {
    
    
        List<K> klist = new ArrayList<K>();
        if (tlist != null && tlist.size() > 0) {
    
    
            for (T t : tlist) {
    
    
                klist.add(clone(t, clz));
            }
        }
        return klist;
    }
}

Second, use examples

//用origEngity的属性生成一个新的NewClass类型的JavaBean
BeanClone.clone(origEngity, NewClass.getClass());

Three, finally

If you don’t want to take it away, give it a reward. If you don’t give a reward, at least pay attention to the blogger, haha, haha, hehe.

Guess you like

Origin blog.csdn.net/datuanyuan/article/details/109101115