黑马程序员技术交流社区

标题: 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'

  1. import org.apache.commons.beanutils.BeanUtils;


  2. public class BeanUtilsDemo {

  3.         /**
  4.          * @param args
  5.          * @throws Exception
  6.          */
  7.         public static void main(String[] args) throws Exception {
  8.                 // TODO Auto-generated method stub
  9.                 Person p = new Person("zs",20);
  10.                 BeanUtils.getProperty(p, "age");
  11.                 System.out.println(p);
  12.         }

  13. }
  14. class Person {
  15.         private String name;
  16.         private int age;
  17.         public Person(String string, int i) {
  18.                 // TODO Auto-generated constructor stub
  19.                 this.name = string;
  20.                 this.age = i;
  21.         }
  22.         public String getName() {
  23.                 return name;
  24.         }
  25.         public void setName(String name) {
  26.                 this.name = name;
  27.         }
  28.         public int getAge() {
  29.                 return age;
  30.         }
  31.         public void setAge(int age) {
  32.                 this.age = age;
  33.         }
  34.         @Override
  35.         public String toString() {
  36.                 return "Person [name=" + name + ", age=" + age + "]";
  37.         }
  38. }
复制代码




作者: yanzhendong    时间: 2014-4-14 09:29
BeanUtils只能获取public修饰的类,把你的Person类单独放一个文件里就行了
作者: doyxy    时间: 2014-4-14 09:43
了解,谢谢




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2