1.为什么要学内省?
开发框架时,经常需要使用java对象的属性来封装程序的数据,每次都使用反射技术完成此类操作过于麻烦,所以sun公司开发了一套API,专门用于操作java对象的属性。
2.什么是Java对象的属性和属性的读写方法?
内省访问JavaBean属性的两种方式:
通过PropertyDescriptor类操作Bean的属性
通过Introspector类获得Bean对象的 BeanInfo,然后通过 BeanInfo 来获取属性的描述器( PropertyDescriptor ),通过这个属性描述器就可以获取某个属性对应的getter/setter 方法,然后通过反射机制来调用这些方法。
3.内省—beanutils工具包
Sun公司的内省API过于繁琐,所以Apache组织结合很多实际开发中的应用场景开发了一套简单、易用的API操作Bean的属性——BeanUtils
Beanutils工具包的常用类:
BeanUtils
PropertyUtils
ConvertUtils.regsiter(Converter convert, Class clazz)
自定义转换器
public voidtest() throws Exception{
Studentstu=new Student();
BeanInfoentity=Introspector.getBeanInfo(Student.class);
PropertyDescriptorpds[]= entity.getPropertyDescriptors();
for(PropertyDescriptorpd:pds){
System.out.println(pd.getName());
System.out.println(pd.getShortDescription());
System.out.println(pd.getDisplayName());
if(pd.equals("age")){
Methodmd=pd.getWriteMethod();
md.invoke(stu,122);
}
}
System.out.println(stu.getAge());
}
通过Introspector类获得Bean对象的 BeanInfo,然后通过 BeanInfo 来获取属性的描述器(PropertyDescriptor )通过这个属性描述器就可以获取某个属性对应的 getter/setter 方法,
然后通过反射机制来调用这些方法。
@Test
publicvoid test() throws Exception {
Student st = new Student();
// 1、通过Introspector类获得Bean对象的 BeanInfo,
BeanInfo entity = Introspector.getBeanInfo(Student.class);
// 2、然后通过 BeanInfo 来获取属性的描述器( PropertyDescriptor )
PropertyDescriptor pdrs[] =entity.getPropertyDescriptors();
// 3、通过这个属性描述器就可以获取某个属性对应的 getter/setter 方法,
for (PropertyDescriptor pd : pdrs) {
System.out.println(pd.getName());
System.out.println(pd.getShortDescription());
System.out.println(pd.getDisplayName());
if(pd.getName().equals("age")) {//age是什么类型?
Method md = pd.getWriteMethod();
md.invoke(st, 12);
}
//获取属性的类型 System.out.println(pd.getName()+""+pd.getPropertyType());
}
System.out.println(st.getAge());
}
//简便的方法
@Test
publicvoid test1()throws Exception{
Student st = new Student();
//通过构造器创建 PropertyDescriptor对象
PropertyDescriptor pd = newPropertyDescriptor("age", Student.class);
Method md = pd.getWriteMethod(); //写操作
md.invoke(st, 120);
System.out.println(st.getAge());
md = pd.getReadMethod();
int value = (Integer)md.invoke(st, null); //读操作
System.out.println(value);
}
4、实例
public classDemo01 {
@Test
public void test1()throws Exception{
Classcls = Class.forName("cn.csdn.beanutils.Student");
Studentbean = (Student)cls.newInstance();
BeanUtils.setProperty(bean, "name","haiyan");
Stringname=BeanUtils.getProperty(bean,"name");
System.out.println(name);
System.out.println(bean.getName());
}
@Test
public void test2()throws Exception{
Stringstr="cn.csdn.beanutils.Student";
Stringage="age";
Classcls = Class.forName(str);
Studentbean = (Student)cls.newInstance();
BeanUtils.setProperty(bean, age, "100");
Stringa=BeanUtils.getProperty(bean, age);
System.out.println(a);
System.out.println(bean.getAge());
}
@Test
public void test3() throws Exception {
Studentbean = new Student();
BeanUtils.setProperty(bean, "brithday",new Date());
System.out.println(bean.getBrithday());
}
@Test
public void test4() throws Exception{
Studentbean=new Student();
ConvertUtils.register(new DateLocaleConverter(), Date.class);
BeanUtils.setProperty(bean, "brithday","2011-02-28");
System.out.println(bean.getBrithday());
}
@Test
public void test5() throws Exception{
Studentbean=new Student();
ConvertUtils.register(new Converter() {
@Override
public Object convert(Class type, Objectvalue) {
if(value==null){
return null;
}
SimpleDateFormatsdf=new SimpleDateFormat("yyyy-MM-dd");
Datedt=null;
try{
dt=sdf.parse((String)value);
}catch (ParseException e) {
throw new ConversionException("日期格式转换有问 题....");
}
returndt;
}
},Date.class);
BeanUtils.setProperty(bean, "brithday","2011-02-28");
System.out.println(bean.getBrithday());
}