經過PropertyDescriptor反映射調用set和get方法

  1. package com.zhoushun;  
  2. import java.lang.reflect.Method;  
  3. import java.lang.reflect.Field;  
  4. import java.beans.PropertyDescriptor;  
  5.   
  6. public class PropertyUtil {  
  7.     @SuppressWarnings("unchecked")  
  8.     public static PropertyDescriptor getPropertyDescriptor(Class clazz, String propertyName) {  
  9.         StringBuffer sb = new StringBuffer();//構建一個可變字符串用來構建方法名稱  
  10.         Method setMethod = null;  
  11.         Method getMethod = null;  
  12.         PropertyDescriptor pd = null;  
  13.         try {  
  14.             Field f = clazz.getDeclaredField(propertyName);//根據字段名來獲取字段  
  15.             if (f!= null) {  
  16.                 //構建方法的後綴  
  17.                String methodEnd = propertyName.substring(01).toUpperCase() + propertyName.substring(1);  
  18.                sb.append("set" + methodEnd);//構建set方法  
  19.                setMethod = clazz.getDeclaredMethod(sb.toString(), new Class[]{ f.getType() });  
  20.                sb.delete(0, sb.length());//清空整個可變字符串  
  21.                sb.append("get" + methodEnd);//構建get方法  
  22.                //構建get 方法  
  23.                getMethod = clazz.getDeclaredMethod(sb.toString(), new Class[]{ });  
  24.                //構建一個屬性描述器 把對應屬性 propertyName 的 get 和 set 方法保存到屬性描述器中  
  25.                pd = new PropertyDescriptor(propertyName, getMethod, setMethod);  
  26.             }  
  27.         } catch (Exception ex) {  
  28.                 ex.printStackTrace();  
  29.         }  
  30.       
  31.         return pd;  
  32.     }  
  33.       
  34.     @SuppressWarnings("unchecked")  
  35.     public static void setProperty(Object obj,String propertyName,Object value){  
  36.         Class clazz = obj.getClass();//獲取對象的類型  
  37.         PropertyDescriptor pd = getPropertyDescriptor(clazz,propertyName);//獲取 clazz 類型中的 propertyName 的屬性描述器  
  38.         Method setMethod = pd.getWriteMethod();//從屬性描述器中獲取 set 方法  
  39.         try {  
  40.             setMethod.invoke(obj, new Object[]{value});//調用 set 方法將傳入的value值保存屬性中去  
  41.         }catch (Exception e){  
  42.             e.printStackTrace();  
  43.         }  
  44.     }  
  45.       
  46.     @SuppressWarnings("unchecked")  
  47.     public static Object getProperty(Object obj, String propertyName){  
  48.        Class clazz = obj.getClass();//獲取對象的類型  
  49.        PropertyDescriptor pd = getPropertyDescriptor(clazz,propertyName);//獲取 clazz 類型中的 propertyName 的屬性描述器  
  50.        Method getMethod = pd.getReadMethod();//從屬性描述器中獲取 get 方法  
  51.        Object value =null ;  
  52.        try {  
  53.            value = getMethod.invoke(clazz, new Object[]{});//調用方法獲取方法的返回值  
  54.        } catch (Exception e) {  
  55.            e.printStackTrace();  
  56.        }  
  57.        return value;//返回值  
  58.     }  
  59. }  





2 java

[java]  view plain  copy
  在CODE上查看代碼片 派生到個人代碼片
  1. public boolean setValue(Object objSet, Object objGet)  
  2.         throws IllegalArgumentException, SecurityException, InstantiationException, IllegalAccessException, InvocationTargetException, NoSuchMethodException, IntrospectionException  
  3.     {  
  4.         boolean flag = true;  
  5.         Field fields[] = objSet.getClass().getDeclaredFields();  
  6.         String value = "";  
  7.         String fieldNameGet = "";  
  8.         List list = new ArrayList();  
  9.         Field afield[];  
  10.         int j = (afield = fields).length;  
  11.         for(int i = 0; i < j; i++)  
  12.         {  
  13.             Field field = afield[i];  
  14.             String fieldName = field.getName();  
  15.             fieldNameGet = xmlToModel(fieldName);  
  16.             if(!"error".equals(fieldNameGet))  
  17.             {  
  18.                 PropertyDescriptor pd = new PropertyDescriptor(fieldNameGet, objGet.getClass());  
  19.                 Method getMethod = pd.getReadMethod();  
  20.                 value = String.valueOf(getMethod.invoke(objGet, new Object[0]));  
  21.                 boolean checkResult = returnMessage.checkValue(value, fieldNameGet);  
  22.                 if(checkResult)  
  23.                 {  
  24.                     PropertyDescriptor pd1 = new PropertyDescriptor(fieldName, objSet.getClass());  
  25.                     Method setMethod = pd1.getWriteMethod();  
  26.                     setMethod.invoke(objSet, new Object[] {  
  27.                         field.getType().getConstructor(new Class[] {  
  28.                             java/lang/String  
  29.                         }).newInstance(new Object[] {  
  30.                             value  
  31.                         })  
  32.                     });  
  33.                 } else  
  34.                 {  
  35.                     flag = checkResult;  
  36.                 }  
  37.             }  
  38.         }  
  39.   
  40.         return flag;  
  41.     }  

3 app

[java]  view plain  copy
  在CODE上查看代碼片 派生到個人代碼片
  1. import java.beans.PropertyDescriptor;  
  2. import java.lang.reflect.Field;  
  3. import java.lang.reflect.Method;  
  4. public class ReflectTest {  
  5.    
  6.  public static void main(String[] args) throws Exception {  
  7.   Class clazz = Class.forName("TaskProvidePropsList");//這裏的類名是全名。。有包的話要加上包名  
  8.   Object obj = clazz.newInstance();  
  9.   Field[] fields = clazz.getDeclaredFields();  
  10.   //寫數據  
  11.   for(Field f : fields) {  
  12.    PropertyDescriptor pd = new PropertyDescriptor(f.getName(), clazz);  
  13.    Method wM = pd.getWriteMethod();//得到寫方法  
  14.    wM.invoke(obj, 2);//由於知道是int類型的屬性,因此傳個int過去就是了。。實際狀況中須要判斷下他的參數類型  
  15.   }  
  16.   //讀數據  
  17.   for(Field f : fields) {  
  18.    PropertyDescriptor pd = new PropertyDescriptor(f.getName(), clazz);  
  19.    Method rM = pd.getReadMethod();//得到讀方法  
  20.    Integer num = (Integer) rM.invoke(obj);//由於知道是int類型的屬性,因此轉換成integer就是了。。也能夠不轉換直接打印  
  21.    System.out.println(num);  
  22.   }  
  23.  }  
  24. }  
相關文章
相關標籤/搜索