BeanUtils的简单使用
编程技术  /  houtizong 发布于 3年前   73
BeanUtils的简单使用
1、导入相应的Jar包
commons-beanutils-1.8.3.jar
commons-logging-1.1.2.jar
2、用于测试的Test类(JavaBean)
package reflect;import java.util.Date;public class Test {private Integer x;// 此处必须要实例化,不然后面测试对象为空private Date date = new Date();public Date getDate() {return date;}public void setDate(Date date) {this.date = date;}public Test(Integer x) {super();this.x = x;}public Integer getX() {return x;}public void setX(Integer x) {this.x = x;}}
3、测试用TestBeanUtils
package reflect;import java.lang.reflect.InvocationTargetException;import org.apache.commons.beanutils.BeanUtils;public class TestBeanUtils {public static void main(String[] args) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {Test t = new Test(4);System.out.println(BeanUtils.getProperty(t, "x"));System.out.println(BeanUtils.getProperty(t, "x").getClass().getName());BeanUtils.setProperty(t, "x", 10);System.out.println(BeanUtils.getProperty(t, "x"));// 此处所使用的date必须已经实例化了BeanUtils.setProperty(t, "date.time", 555);System.out.println(BeanUtils.getProperty(t, "date.time"));}}
4、运行结果
4java.lang.String10555
其余方法,可自行实验,没有什么难度……
请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!
技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成
网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];
文章归档
文章标签
友情链接