java 自省机制_java内省机制Introspector

访问JavaBean属性的两种方式

1)直接调用bean的setXXX或getXXX方法;

2)通过内省技术访问(java.beans包提供了内省的API),内省技术访问也提供了两种方式:

a)通过PropertyDescriptor类操作Bean的属性;

b)通过Introspector类获得Bean对象的 BeanInfo,然后通过 BeanInfo 来获取属性的描述器( PropertyDescriptor ),通过这个属性描述器就可以获取某个属性对应的 getter/setter 方法,然后通过反射机制来调用这些方法。

public classPerson {

private String name; // 字段

private String password;// 字段

private Integer age;// 字段

// 对字段添加了get或者set方法了,才叫做属性

publicString getXxx() {

return "aa";

}

setter/getter

}

以下通过内省机制来操作Person对象。

获得类所有的属性

@Test

public void test1() throwsException {

BeanInfo beanInfo = Introspector.getBeanInfo(Person.class);

PropertyDescriptor[] propertyDescriptors =beanInfo.getPropertyDescriptors(); //得到属性描述符

for(PropertyDescriptor propertyDescriptor : propertyDescriptors) {

System.out.println(propertyDescriptor.getName());

}

}

执行结果:age  class  money  name  password  xxx

包括了从父类中继承过来的属性class

获得本类中的所有属性

@Test

public void test2() throwsException {

// 剔除Object继承过来的属性

BeanInfo beanInfo =Introspector.getBeanInfo(Person.class, Object.class);

PropertyDescriptor[] propertyDescriptors =beanInfo.getPropertyDescriptors();

for(PropertyDescriptor propertyDescriptor : propertyDescriptors) {

System.out.println(propertyDescriptor.getName());

}

}

操纵bean的指定属性

@Test

public void test3() throwsException {

Person person = newPerson();

PropertyDescriptor propertyDescriptor = new PropertyDescriptor("age", Person.class);

// 得到属性的写方法,为属性赋值

Method setAgeMethod = propertyDescriptor.getWriteMethod(); // setAge

setAgeMethod.invoke(person, 34);

// 获取属性的值

System.out.println(person.getAge());

Method getAgeMethod =propertyDescriptor.getReadMethod();

System.out.println(getAgeMethod.invoke(person, null));

}

获取当前操作的属性的类型

@Test

public void test4() throwsException {

PropertyDescriptor propertyDescriptor = new PropertyDescriptor("money",Person.class);

Class> propertyType =propertyDescriptor.getPropertyType();

System.out.println(propertyType);

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值