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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 盛亚昆 中级黑马   /  2012-4-1 01:36  /  1801 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

public class IntroSpectorTest {

        /**
         * @param args
         */
        public static void main(String[] args)throws Exception {
                // TODO Auto-generated method stub
               
                Persion p=new Persion("王五",21);
       
                        String propertyName="name";

                                PropertyDescriptor pd = new PropertyDescriptor(propertyName,p.getClass());
                       
                        Method methodSetNAME = pd.getWriteMethod();
                        methodSetNAME.invoke(pd,"王五");//有错误
                        System.out.println(pd.getName());
}

//我想用set方法把名字赋值到Persion 类里,做不出来了 ,高手指点啊???


public class Persion  {
        public String name;
        private  int age;
        public Persion(String name,int age){
                super();
                this.name=name;
                this.age=age;
               
        }
        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;
        }
}


3 个回复

倒序浏览
本帖最后由 yangshang1 于 2012-4-1 06:16 编辑

import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;


public class IntroSpectorTest {

        /**
          * @param args
          */
         public static void main(String[] args)throws Exception {
                 // TODO Auto-generated method stub
                 
                Persion1 p=new Persion1("王五",21);
         
                        String propertyName="name";

                                PropertyDescriptor pd = new PropertyDescriptor(propertyName,p.getClass());
                        
                        Method methodSetNAME = pd.getWriteMethod();
                         methodSetNAME.invoke(p,"王五");//换成p
                         System.out.println(pd.getName());
                         System.out.println(p.getName());
}
}
//我想用set方法把名字赋值到Persion 类里,做不出来了 ,高手指点啊???


class Persion1  {
         public String name;
         private  int age;
         public Persion1(String name,int age){
                 super();
                 this.name=name;
                 this.age=age;
                 
        }
         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;
         }
}
回复 使用道具 举报
主函数的第五行methodSetNAME.invoke(pd,"王五");改成methodSetNAME.invoke(p,"王五");,invoke方法调用的是对象和参数,不是调用属性描述器。再看看视频吧,反射,内省和动态代理很重要,这些知识学不好的话以后会很吃力。
回复 使用道具 举报
谢谢指点
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马