【java反射之】对javabean内省操作

内省(Introspector)是Java语言对Bean类属性、事件的一种缺省处理方法。例如类A中有属性name,那我们可以通过getName,setName来得到其值或者设置新的值。通过getName/setName来访问name属性,这就是默认的规则。Java中提供了一套API用来访问某个属性的getter/setter方法,通过这些API可以使你不需要了解这个规则(但你最好还是要搞清楚),这些API存放于包java.beans中。
一般的做法是通过类Introspector来获取某个对象的BeanInfo信息,然后通过BeanInfo来获取属性的描述器(PropertyDescriptor),通过这个属性描述器就可以获取某个属性对应的getter/setter方法,然后我们就可以通过反射机制来调用这些方法。
		package com.oterman.reflect;

		import java.beans.BeanInfo;
		import java.beans.IntrospectionException;
		import java.beans.Introspector;
		import java.beans.PropertyDescriptor;
		import java.lang.reflect.InvocationTargetException;
		import java.lang.reflect.Method;


		/**
		 * 该例子演示内省的简单应用;
		 * 内省就是对javabean的属性进行读写操作;
		 * 两个类:PropertyDesciptor,BeanInfo; 
		 *
		 */
		public class IntrospectorDemo {
			public static void main(String[] args) throws IntrospectionException, Exception, IllegalAccessException, InvocationTargetException {
				ReflectPoint point=new ReflectPoint(2,5);
				//内省方式读取x的值;
				PropertyDescriptor pd=new PropertyDescriptor("x",point.getClass()); 
				Method methodGetX=pd.getReadMethod();
				Object retVal=methodGetX.invoke(point);
				System.out.println(retVal);
				
				//内省方式改写x的值;
				PropertyDescriptor pd2= new PropertyDescriptor("y",point.getClass());
				Method methodWriteY=pd2.getWriteMethod();
				methodWriteY.invoke(point, 88);
				System.out.println(point.getY());
				
				//BeanInfo方式操作属性值x的值;
				BeanInfo beanInfo=Introspector.getBeanInfo(point.getClass());//BeanInfo对象包含了javabean对象的所有属性信息;
				PropertyDescriptor[] pds=beanInfo.getPropertyDescriptors();

				for(PropertyDescriptor pd3:pds){
					if(pd3.getName().equals("x")){//判断得到的属性是不是x;
						pd3.getWriteMethod().invoke(point, 99);
						break;
					}
				}
				System.out.println(point.getX());
				
			}
		}


		//用来做反射演示用;
		class ReflectPoint{
			private int x;
			public int y;
			public ReflectPoint(int x,int y){
				this.x=x;
				this.y=y;
			}
			public int getX() {
				return x;
			}
			public void setX(int x) {
				this.x = x;
			}
			public int getY() {
				return y;
			}
			public void setY(int y) {
				this.y = y;
			}
		}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值