A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 马胜平 中级黑马   /  2012-3-2 18:53  /  1523 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


  1. import java.beans.IntrospectionException;
  2. import java.beans.PropertyDescriptor;
  3. import java.lang.reflect.Constructor;
  4. import java.lang.reflect.InvocationTargetException;
  5. import java.lang.reflect.Method;

  6. class Person{
  7.         private String name;
  8.         public Integer age;

  9.         public Person(){
  10.                
  11.         }
  12.         public Person(String name,Integer age){
  13.                 this.name=name;
  14.                 this.age=age;
  15.                
  16.         }
  17.         public void setName(String name) {
  18.                 this.name = name;
  19.         }
  20.         public String getName() {
  21.                 return name;
  22.         }
  23.         public void setAge(Integer age) {
  24.                 this.age = age;
  25.         }
  26.         public int getAge() {
  27.                 return age;
  28.         }

  29. }
  30. public class JavaBeanTest{

  31.         public static void main(String[]args){
  32.        
  33.                 Class clazz=Person.class;
  34.                 try {
  35.                        
  36.                         Person p=(Person) clazz.newInstance();
  37.                         p.setName("jay_ma");
  38.        

  39.                         String propertyName="age";
  40.                         PropertyDescriptor pd=new PropertyDescriptor(propertyName,clazz);
  41.                        
  42.                         Method method=pd.getWriteMethod();
  43.                         method.invoke(p, new Integer(20));
  44.                
  45.                         System.out.println("姓名:"+p.getName()+"年龄:"+p.getAge());
  46.                 } catch (InstantiationException e) {
  47.                        
  48.                         e.printStackTrace();
  49.                 } catch (IllegalAccessException e) {
  50.                
  51.                         e.printStackTrace();
  52.                 } catch (IntrospectionException e) {
  53.                
  54.                         e.printStackTrace();
  55.                 } catch (IllegalArgumentException e) {
  56.                        
  57.                         e.printStackTrace();
  58.                 } catch (InvocationTargetException e) {
  59.        
  60.                         e.printStackTrace();
  61.                 }
  62.         }
  63.        

  64.         }
复制代码
明明有这个方法为啥老提示找不到异常java.beans.IntrospectionException: Method not found: setAge
        at java.beans.PropertyDescriptor.<init>(PropertyDescriptor.java:93)
        at java.beans.PropertyDescriptor.<init>(PropertyDescriptor.java:53)
        at com.itheima.JavaBeanTest.main(JavaBeanTest.java:47)

3 个回复

倒序浏览
把Integer换成int就行了
回复 使用道具 举报
你那个getAge返回的类型和设置的类型不一致

评分

参与人数 1黑马币 +6 收起 理由
马胜平 + 6 OK

查看全部评分

回复 使用道具 举报
谢谢大家
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马