黑马程序员技术交流社区
标题:
BeauUtils的使用异常
[打印本页]
作者:
贾浩田
时间:
2014-10-21 12:54
标题:
BeauUtils的使用异常
import java.lang.reflect.InvocationTargetException;
import org.apache.commons.beanutils.BeanUtils;
import org.junit.Test;
//使用BeanUtils操作JavaBean的属性
//在使用之前,先把beanutils.jar和logging.jar加入BuildPath
public class Test10 {
@Test
public void testUtils() throws IllegalAccessException, InvocationTargetException, NoSuchMethodException{
Person p = new Person("sadf", 54);
//BeanUtils.setProperty(p, "name", "345");
String str = BeanUtils.getProperty(p, "name");
System.out.println(str);
}
}
复制代码
使用BeanUtils操作JavaBean的属性,用Junit测试总是不通过,提示我该JavaBean类中没有对应的Getter和Setter,可是我的 Bean类中明明有啊,而且也是共有的为什么还会报错???
作者:
MeryStyle
时间:
2014-10-21 13:48
我也是同样的错误!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2