码迷,mamicode.com
首页 > 其他好文 > 详细

beanutils获取带参数get方法

时间:2014-10-26 21:11:11      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   on   bs   new   size   dp   

public Employee getEmployee(int index) {
        return new Employee();
    }

1、PropertyUtils.getIndexedProperty带2个参数

  //    public static void main(String[] args) throws Exception {
//        Employee employee=new Employee();
//        int index=3;
//        String emp="employee["+index+"]";
//        //PropertyUtils.setIndexedProperty(employee, num, new Object[]{1,2,3});
//        Employee e=(Employee) PropertyUtils.getIndexedProperty(employee, emp);
//        System.out.println(e);
//    }

 

2、PropertyUtils.getIndexedProperty带3个参数

public static void main(String[] args) throws Exception {
        Employee employee=new Employee();
        int index=3;
        String emp="employee";
        Employee e=(Employee) PropertyUtils.getIndexedProperty(employee, emp,index);
        System.out.println(e);
    }

beanutils获取带参数get方法

标签:style   io   ar   sp   on   bs   new   size   dp   

原文地址:http://www.cnblogs.com/danmao/p/4052683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!