类Introspector- -

/* * 系统定义的工具 * * 类Introspector * 用于分析一个Bean * * Introspector.getBeanInfo() * 用于开始分析Bean,返回一个相关的BeanInfo对象 * 第一个参数 待分析Bean的类 * 第二个参数 可选 决定分析到该Bean的哪一层基类上去。 * 如果不带第二个参数的话,分析所有的属性 * * 对于任何一个Java的类,都是从Object类继承过来的 * Object.getClass() * 用于获得该对象所依照的类 * Object.getSuperclass() * 用于获得该对象所依照的类的父类 * */ import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.beans.*; import java.io.*; import java.lang.reflect.Method; public class myBeanIntrospector {  public myBeanIntrospector()  {   try   {    //实例化一个Bean    Test2 beanObj = new Test2();
   //依据Bean产生一个相关的BeanInfo类    BeanInfo bInfoObject =    Introspector.getBeanInfo(beanObj.getClass(),beanObj.getClass().getSuperclass());
   //定义一个用于显示的字符串    String output = "";
   //开始自省
 
   /*    * BeanInfo.getMethodDescriptors()    * 用于获取该Bean中的所有允许公开的成员方法,以MethodDescriptor数组的形式返回    *    * MethodDescriptor类    * 用于记载一个成员方法的所有信息    * MethodDescriptor.getName()    * 获得该方法的方法名字
   * MethodDescriptor.getMethod()    * 获得该方法的方法对象(Method类)    *    * Method类    * 记载一个具体的的方法的所有信息    * Method.getParameterTypes()    * 获得该方法所用到的所有参数,以Class数组的形式返回    *    * Class..getName()    * 获得该类型的名字    */    output = "内省成员方法:/n";    MethodDescriptor[] mDescArray = bInfoObject.getMethodDescriptors();    for (int i=0;i<mDescArray.length ;i++ )    {     //获得一个成员方法描述器所代表的方法的名字     String methodName = mDescArray[i].getName();          String methodParams = new String();     //获得该方法对象     Method methodObj = mDescArray[i].getMethod();     //通过方法对象获得该方法的所有参数,以Class数组的形式返回     Class[] parameters = methodObj.getParameterTypes();     if (parameters.length>0)     {      //获得参数的类型的名字      methodParams = parameters[0].getName();      for (int j=1;j<parameters.length ;j++ )      {       methodParams = methodParams + "," + parameters[j].getName();      }     }     output += methodName + "(" + methodParams + ")/n";    }    System.out.println(output);
 
   /*    * BeanInfo.getPropertyDescriptors()    * 用于获取该Bean中的所有允许公开的成员属性,以PropertyDescriptor数组的形式返回    *    * PropertyDescriptor类    * 用于描述一个成员属性    *    * PropertyDescriptor.getName()    * 获得该属性的名字    *    * PropertyDescriptor.getPropertyType()    * 获得该属性的数据类型,以Class的形式给出    *    */    output = "内省成员属性:/n";    PropertyDescriptor[] mPropertyArray = bInfoObject.getPropertyDescriptors();    for (int i=0;i<mPropertyArray.length ;i++ )    {     String propertyName = mPropertyArray[i].getName();
    Class propertyType = mPropertyArray[i].getPropertyType();
    output += propertyName + " ( " + propertyType.getName() + " )/n";    }    System.out.println(output);
 
   /*    * BeanInfo.getEventSetDescriptors()    * 用于获取该Bean中的所有允许公开的成员事件,以EventSetDescriptor数组的形式返回    *    * EventSetDescriptor类    * 用于描述一个成员事件    *    * EventSetDescriptor.getName()    * 获得该事件的名字    *    * EventSetDescriptor.getListenerType()    * 获得该事件所依赖的事件监听器,以Class的形式给出    *    */    output = "内省绑定事件:/n";    EventSetDescriptor[] mEventArray = bInfoObject.getEventSetDescriptors();    for (int i=0;i<mEventArray.length ;i++ )    {     String EventName = mEventArray[i].getName();
    Class listenerType = mEventArray[i].getListenerType();
    output += EventName + "(" + listenerType.getName() + ")/n";    }    System.out.println(output);
   System.out.println("write by esonghui :)");
 
  }   catch (Exception e)   {    System.out.println("异常:" + e);   }  }
 public static void main(String[] args)  {   new myBeanIntrospector();  } }
from:http://fanglulu.51.net/java/javacode/myBeanIntrospector.java
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
package com.bjsasc.finance.common.utils; import java.beans.BeanInfo; import java.beans.Introspector; import java.beans.PropertyDescriptor; import java.lang.reflect.Field; import java.util.HashMap; import java.util.Map; public class JavaBeanUtil { /** * * @param source 被复制的实体类对象 * @param to 复制完后的实体类对象 * @throws Exception */ public static void Copy(Object source, Object to) throws Exception { // 获取属性 BeanInfo sourceBean = Introspector.getBeanInfo(source.getClass(),java.lang.Object.class); PropertyDescriptor[] sourceProperty = sourceBean.getPropertyDescriptors(); BeanInfo destBean = Introspector.getBeanInfo(to.getClass(),java.lang.Object.class); PropertyDescriptor[] destProperty = destBean.getPropertyDescriptors(); try { for (int i = 0; i < sourceProperty.length; i++) { for (int j = 0; j < destProperty.length; j++) { if (sourceProperty[i].getName().equals(destProperty[j].getName())) { // 调用source的getter方法和dest的setter方法 destProperty[j].getWriteMethod().invoke(to,sourceProperty[i].getReadMethod().invoke(source)); break; } } } } catch (Exception e) { throw new Exception("属性复制失败:" + e.getMessage()); } } /** * Pojo -> Map<String, Object> * @param obj * @return * @throws Exception */ public static Map<String,Object> object2Map(Object obj)throws Exception{ Map<String,Object> map =new HashMap<>(); Field[] fields = obj.getClass().getDeclaredFields(); for(Field field:fields){ field.setAccessible(true); map.put(field.getName(), field.get(obj)); } return map; } } 帮我优化下这个代码,考虑对象中有对象和对象集合的情况
04-19

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值