黑马程序员技术交流社区

标题: JavaBean的问题 [打印本页]

作者: 曹冬明    时间: 2014-4-21 09:55
标题: JavaBean的问题
  1. package cn.itast;

  2. import java.beans.BeanInfo;
  3. import java.beans.IntrospectionException;
  4. import java.beans.Introspector;
  5. import java.beans.PropertyDescriptor;
  6. import java.lang.reflect.InvocationTargetException;
  7. import java.lang.reflect.Method;

  8. import org.apache.commons.beanutils.BeanUtils;

  9. public class IntroSpector {

  10.         public static void main(String[] args) throws IntrospectionException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
  11.                 // TODO Auto-generated method stub
  12.                 ReflectPoint pt1 = new ReflectPoint(3, 5);
  13.                
  14.                 String propertyName = "x";
  15.                 //"x"-->"X"-->"getX"-->methodGetX-->
  16.                 Object retVal = getProperty(pt1, propertyName);
  17.                 System.out.println(retVal);
  18.                
  19.                 Object value = 7;
  20.                 setProperty(pt1, propertyName, value);
  21.                 BeanUtils.getProperty(pt1,"x");
  22.                 System.out.println(pt1.getX());
  23.         }

  24.         private static void setProperty(ReflectPoint pt1, String propertyName,
  25.                         Object value) throws IntrospectionException,
  26.                         IllegalAccessException, InvocationTargetException {
  27.                 PropertyDescriptor pd2 = new PropertyDescriptor(propertyName, pt1.getClass());
  28.                 Method methodSetX = pd2.getWriteMethod();
  29.                 methodSetX.invoke(pt1,value);
  30.         }j

  31.         private static Object getProperty(Object pt1, String propertyName)
  32.                         throws IntrospectionException, IllegalAccessException,
  33.                         InvocationTargetException {
  34.                 /*PropertyDescriptor pd = new PropertyDescriptor(propertyName, pt1.getClass());
  35.                 Method methodGetX = pd.getReadMethod();
  36.                 Object retVal = methodGetX.invoke(pt1);*/
  37.                 BeanInfo beanInfo = Introspector.getBeanInfo(pt1.getClass());
  38.                 PropertyDescriptor[] pds = beanInfo.getPropertyDescriptors();
  39.                 Object retVal = null;
  40.                 for(PropertyDescriptor pd : pds){
  41.                         if(pd.getName().equals(propertyName)){
  42.                                 Method methodGetX = pd.getReadMethod();
  43.                                 retVal = methodGetX.invoke(pt1);
  44.                                 break;
  45.                         }
  46.                 }
  47.                        
  48.                
  49.                 return retVal;
  50.         }

  51. }
复制代码

Exception in thread "main" java.lang.Error: Unresolved compilation problem:

        at cn.itast.IntroSpector.main(IntroSpector.java:14)
报上面的异常,昨天也是这个问题,14行就是主函数声明的那一行

作者: WO.瘾姓埋銘    时间: 2014-4-21 22:36
第35行多个 j
作者: 郭帅帅    时间: 2014-4-22 10:22
这get和set 方法我怎么就抽不出来呢?




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2