黑马程序员技术交流社区
标题:
BeanUtils的问题
[打印本页]
作者:
doyxy
时间:
2014-4-13 23:45
标题:
BeanUtils的问题
本帖最后由 doyxy 于 2014-4-14 09:43 编辑
请教为什么我获取属性总是提示错误呢?Exception in thread "main" java.lang.NoSuchMethodException: Property 'age' has no getter method in class 'class Person'
import org.apache.commons.beanutils.BeanUtils;
public class BeanUtilsDemo {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
Person p = new Person("zs",20);
BeanUtils.getProperty(p, "age");
System.out.println(p);
}
}
class Person {
private String name;
private int age;
public Person(String string, int i) {
// TODO Auto-generated constructor stub
this.name = string;
this.age = i;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
@Override
public String toString() {
return "Person [name=" + name + ", age=" + age + "]";
}
}
复制代码
作者:
yanzhendong
时间:
2014-4-14 09:29
BeanUtils只能获取public修饰的类,把你的Person类单独放一个文件里就行了
作者:
doyxy
时间:
2014-4-14 09:43
了解,谢谢
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2