美文网首页
java内省api的操作

java内省api的操作

作者: setone | 来源:发表于2019-01-16 17:52 被阅读0次

    内省是Java语言对Bean类属性、事件的一种缺省处理方法。例如类A中有属性name,那我们可以通过getName,setName来得到其值或者设置新 的值。通过getName/setName来访问name属性,这就是默认的规则。Java中提供了一套API用来访问某个属性的getter /setter方法,通过这些API可以使你不需要了解这个规则(但你最好还是要搞清楚),这些API存放于包java.beans中。

    一 般的做法是通过类Introspector来获取某个对象的BeanInfo信息,然后通过BeanInfo来获取属性的描述器 (PropertyDescriptor),通过这个属性描述器就可以获取某个属性对应的getter/setter方法,然后我们就可以通过反射机制来 调用这些方法。

        @Test
        public void test2() throws  Exception {
            UserInfo u = new UserInfo();
            
            Class<?> cl = Class.forName(UserInfo.class.getName());
            BeanInfo beaninfo = Introspector.getBeanInfo(cl, Object.class);
            PropertyDescriptor[] pro = beaninfo.getPropertyDescriptors();
            for (PropertyDescriptor propertyDescriptor : pro) {
                Method writeme = propertyDescriptor.getWriteMethod();
                if("name".equals(propertyDescriptor.getName())) {
                    writeme.invoke(u, "xc");
                }
                
                
                Method method = propertyDescriptor.getReadMethod();
                log.info("{}:{}",propertyDescriptor.getName(),method.invoke(u));
            }
            log.info("{}",u.getName());
    
        }
    
    public class UserInfo {
        private long userId;
        private String name;
        private int age;
                            //省略get,set
    

    内省是一种对javabean反射的补充

    相关文章

      网友评论

          本文标题:java内省api的操作

          本文链接:https://www.haomeiwen.com/subject/kzzmdqtx.html