Java 反射与内省

一、java反射机制 
JAVA反射机制是在运行状态中, 
对于任意一个类,都能够得到这个类的所有属性和方法; 
对于任意一个对象,都能够调用它的任意一个方法; 
这种动态获取的信息以及动态调用对象的方法的功能称为java语言的反射机制. 

概括一下: 
反射就是让你可以通过名称来得到对象(类,属性,方法)的技术。 
例如我们可以通过类名来生成一个类的实例; 
知道了方法名,就可以调用这个方法; 
知道了属性名就可以访问这个属性的值。 

1、获取类对应的Class对象 
   运用(已知对象)getClass():Object类中的方法,每个类都拥有此方法。 
   如: String str = new String(); 
Class strClass = str.getClass(); 
   运用(已知子类的class) Class.getSuperclass():Class类中的方法,返回该Class的父类的Class; 
   运用(已知类全名):Class.forName() 静态方法 
   运用(已知类): 类名.class 

2、通过类名来构造一个类的实例 
   a、调用无参的构造函数: 
   Class newoneClass = Class.forName(类全名); 
   newoneClass.newInstance(); 

   b、调用有参的构造函数:我们可以自定义一个函数。 
   public Object newInstance(String className, Object[] args) throws Exception { 
   //args为参数数组 
   Class newoneClass = Class.forName(className); 
   //得到参数的Class数组(每个参数的class组成的数组),由此来决定调用那个构造函数 
   Class[] argsClass = new Class[args.length]; 
   for (int i = 0, j = args.length; i < j; i++) { 
argsClass[i] = args[i].getClass(); 
   } 
   Constructor cons = newoneClass.getConstructor(argsClass); //根据argsClass选择函数 
   return cons.newInstance(args); //根据具体参数实例化对象。 
   } 

3、得到某个对象的属性 

   a、非静态属性:首先得到class,然后得到这个class具有的field,然后以具体实例为参数调用这个field 

   public Object getProperty(Object owner, String fieldName) throws Exception { 
       Class ownerClass = owner.getClass();//首先得到class 
       Field field = ownerClass.getField(fieldName); 
       //然后得到这个class具有的field,也可以通过getFields()得到所有的field 
       Object property = field.get(owner); 
       //owner指出了取得那个实例的这个属性值,如果这个属性是非公有的,这里会报IllegalAccessException。 
       return property; 

   } 

   b、静态属性: 
      只有最后一步不同,由于静态属性属于这个类,所以只要在这个类上调用这个field即可 
      Object property = field.get(ownerClass); 

4、执行某对象的方法 

  public Object invokeMethod(Object owner, String methodName, Object[] args) throws Exception { 
     Class ownerClass = owner.getClass(); //也是从class开始的 
     //得到参数的class数组,相当于得到参数列表的类型数组,来取决我们选择哪个函数。 
     Class[] argsClass = new Class[args.length]; 
     for (int i = 0, j = args.length; i < j; i++) { 
         argsClass[i] = args[i].getClass(); 
     } 
     //根据函数名和函数类型来选择函数 
     Method method = ownerClass.getMethod(methodName, argsClass); 
     return method.invoke(owner, args);//具体实例下,具体参数值下调用此函数 
  } 

5、执行类的静态方法 
   和上面的相似只是最后一行不需要指定具体实例 
   return method.invoke(null, args); 

6、判断是否为某个类的实例 

   public boolean isInstance(Object obj, Class cls) { 
        return cls.isInstance(obj); 
   } 

测试bean类:SimpleBean.java 

Java代码  收藏代码

  1. package com.royzhou.bean;  

  2.   

  3. public class SimpleBean {  

  4.     private String name;  

  5.     private String[] hobby;  

  6.       

  7.     public SimpleBean() {  

  8.     }  

  9.   

  10.     public SimpleBean(String name, String[] hobby) {  

  11.         this.name = name;  

  12.         this.hobby = hobby;  

  13.     }  

  14.   

  15.     public void setName(String name) {  

  16.         this.name = name;  

  17.     }  

  18.   

  19.     public String getName() {  

  20.         return this.name;  

  21.     }  

  22.   

  23.     public void setHobby(String[] hobby) {  

  24.         this.hobby = hobby;  

  25.     }  

  26.   

  27.     public String[] getHobby() {  

  28.         return this.hobby;  

  29.     }  

  30.       

  31.     public String toString() {  

  32.         String returnValue = super.toString() + "\n";  

  33.         returnValue += "name:=" + this.name + "\n";  

  34.         if(this.hobby != null) {  

  35.             returnValue += "hobby:";  

  36.             for(String s : this.hobby) {  

  37.                 returnValue += s + ",";  

  38.             }  

  39.             returnValue += "\n";  

  40.         }  

  41.         return  returnValue;  

  42.     }  

  43. }  



反射测试类:ReflectTest.java 

Java代码  收藏代码

  1. package com.royzhou.bean;  

  2.   

  3. import java.lang.reflect.Constructor;  

  4. import java.lang.reflect.Field;  

  5. import java.lang.reflect.Method;  

  6.   

  7. public class ReflectTest {  

  8.     public static void main(String[] args) throws Exception {  

  9.         Class clazz = SimpleBean.class;  

  10.         //使用无参构造函数实例化bean  

  11.         SimpleBean sb = (SimpleBean)clazz.newInstance();  

  12.         System.out.println(sb);  

  13.           

  14.         //使用有参构造函数实例化bean  

  15.         Constructor constructor = clazz.getConstructor(new Class[]{String.class, String[].class});  

  16.         sb = (SimpleBean)constructor.newInstance(new Object[]{"royzhou",new String[]{"football","basketball"}});  

  17.         System.out.println(sb);  

  18.           

  19.         //为name字段设置值  

  20.         Field field = clazz.getDeclaredField("name");  

  21.         field.setAccessible(true); //避免private不可访问抛出异常  

  22.         field.set(sb, "royzhou1985");  

  23.         System.out.println("modify name using Field:=" + sb.getName() + "\n");  

  24.           

  25.         //列出类SimpleBean的所有方法  

  26.         Method[] methods = clazz.getDeclaredMethods();  

  27.         System.out.println("get methods of class SimpleBean:");  

  28.         for(Method method : methods) {  

  29.             if("setHobby".equals(method.getName())) {  

  30.                 //动态调用类的方法来为hobby设置值  

  31.                 method.invoke(sb, new Object[]{new String[]{"tennis","fishing"}});  

  32.             }  

  33.             System.out.println(method.getName());  

  34.         }  

  35.           

  36.         System.out.println("\nset by invoke Method");  

  37.         System.out.println(sb);  

  38.     }  

  39. }  



输出结果: 
com.royzhou.bean.SimpleBean@757aef 
name:=null 

com.royzhou.bean.SimpleBean@d9f9c3 
name:=royzhou 
hobby:football,basketball, 

modify name using Field:=royzhou1985 

get methods of class SimpleBean: 
setHobby 
getHobby 
getName 
toString 
setName 

set by invoke Method 
com.royzhou.bean.SimpleBean@d9f9c3 
name:=royzhou1985 
hobby:tennis,fishing, 


二、java内省机制 

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

Java代码  收藏代码

  1. package com.royzhou.bean;  

  2.   

  3. import java.beans.BeanInfo;  

  4. import java.beans.Introspector;  

  5. import java.beans.MethodDescriptor;  

  6. import java.beans.PropertyDescriptor;  

  7.   

  8. public class IntrospectorTest {  

  9.     public static void main(String[] args) throws Exception {  

  10.         SimpleBean sb = new SimpleBean("royzhou",new String[]{"football","backetball"});  

  11.           

  12.         System.out.println(sb);  

  13.           

  14.         /** 

  15.          * 使用Introspector.getBeanInfo(SimpleBean.class)将Bean的属性放入到BeanInfo中。 

  16.          * 第二个参数为截止参数,表示截止到此类之前,不包括此类。 

  17.          * 如果不设置的话,那么将会得到本类以及其所有父类的info。 

  18.          * BeanInfo中包含了SimpleBean的信息 

  19.          */  

  20.         BeanInfo beanInfo = Introspector.getBeanInfo(sb.getClass());  

  21.           

  22.         //将每个属性的信息封装到一个PropertyDescriptor形成一个数组其中包括属性名字,读写方法,属性的类型等等  

  23.         PropertyDescriptor[] propertys = beanInfo.getPropertyDescriptors();  

  24.         for(PropertyDescriptor property : propertys) {  

  25.             System.out.println("属性名:" + property.getName());  

  26.             System.out.println("类型:" + property.getPropertyType());  

  27.         }  

  28.         System.out.println();  

  29.           

  30.         System.out.println("列出SimpleBean的所有方法");  

  31.         MethodDescriptor[] methods = beanInfo.getMethodDescriptors();  

  32.         for(MethodDescriptor method : methods) {  

  33.             System.out.println(method.getName());  

  34.         }  

  35.         System.out.println();  

  36.           

  37.         /** 

  38.          * 重新设置属性值 

  39.          */  

  40.         for(PropertyDescriptor property : propertys) {  

  41.             if(property.getPropertyType().isArray()){  //getPropertyType得到属性类型。  

  42.                 if(property.getPropertyType().isArray()) {  

  43.                     if("hobby".equals(property.getName())) {  

  44.                         //getComponentType()可以得到数组类型的元素类型  

  45.                         if(property.getPropertyType().getComponentType().equals(String.class)) {  

  46.                             //getWriteMethod()得到此属性的set方法----Method对象,然后用invoke调用这个方法  

  47.                             property.getWriteMethod().invoke(sb, new Object[]{new String[]{"tennis","fishing"}});  

  48.                         }  

  49.                     }  

  50.                 }  

  51.              } else if("name".equals(property.getName())) {  

  52.                 property.getWriteMethod().invoke(sb, new Object[] { "royzhou1985" });  

  53.              }  

  54.         }  

  55.           

  56.         /** 

  57.          * 获取对象的属性值 

  58.          */  

  59.         System.out.println("获取对象的属性值");  

  60.         for(PropertyDescriptor property : propertys) {  

  61.             if(property.getPropertyType().isArray()){  //getPropertyType得到属性类型。  

  62.                 //getReadMethod()得到此属性的get方法----Method对象,然后用invoke调用这个方法  

  63.                 String[] result=(String[]) property.getReadMethod().invoke(sb, new Object[]{});  

  64.                 System.out.print(property.getName()+":");//getName得到属性名字  

  65.                 for (int j = 0; j < result.length; j++) {  

  66.                    System.out.print(result[j] + ",");  

  67.                 }  

  68.                 System.out.println();  

  69.              }  

  70.              else{  

  71.                 System.out.println(property.getName()+":"+property.getReadMethod().invoke(sb, new Object[]{}));  

  72.              }  

  73.         }  

  74.           

  75.     }  

  76. }  



输出结果: 
com.royzhou.bean.SimpleBean@757aef 
name:=royzhou 
hobby:football,backetball, 

属性名:class 
类型:class java.lang.Class 
属性名:hobby 
类型:class [Ljava.lang.String; 
属性名:name 
类型:class java.lang.String 

列出SimpleBean的所有方法 
hashCode 
setHobby 
equals 
wait 
wait 
notify 
getClass 
toString 
notifyAll 
getHobby 
setName 
wait 
getName 

获取对象的属性值 
class:class com.royzhou.bean.SimpleBean 
hobby:tennis,fishing, 
name:royzhou1985 

三、总结 
    将 Java 的反射以及内省应用到程序设计中去可以大大的提供程序的智能化和可扩展性,有很多项目都是采取这两种技术来实现其核心功能, 
    其实应该说几乎所有的项目都或多或少的采用这两种技术,在实际应用过程中二者要相互结合方能发挥真正的智能化以及高度可扩展性。


你可能感兴趣的:(Java 反射与内省)