⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 beanutils.java

📁 java网上考试系统
💻 JAVA
字号:
/*
 * @(#)BeanUtils.java Dec 13, 2006
 * Copyright 2006 qingdaosoftware, Inc. All rights reserved
 */
package com.qrsx.exam.util;

import java.lang.reflect.InvocationTargetException;

/**
 * 
 * 功能:
 * 
 * <p>
 * <a href="com.qrsx.exam.util.BeanUtils.java"> <i>View Source </i> </a>
 * </p>
 * 
 * Company : QingdaoSoftware<br>
 * Author : <a href="mailto:wxt1013@163.com">WangXitao</a>
 * </p>
 * Version : 1.0<br>
 * Date : Dec 13, 2006<br>
 */
public class BeanUtils {

    public static <T> T copyProperties(T t, Object o) {
        try {
            org.apache.commons.beanutils.BeanUtils.copyProperties(t, o);
        } catch (IllegalAccessException e) {
            e.printStackTrace();
        } catch (InvocationTargetException e) {
            e.printStackTrace();
        }
        return t;
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -