摘要:
一、步骤: 1)使用PropertyDescriptor类获取属性描述者对象//pd引用Student的name属性PropertyDescriptor pd = new PropertyDescriptor("name", Student.class); 2)通过getWriteMethod(... 阅读全文
摘要:
一、使用步骤: 1、添加jar包: commons-beanutils-1.8.0.jar commons-logging.jar 2、使用setProperty()方法对javabean设置属性值 bu.setProperty(s, "name", "张三");bu.se... 阅读全文