类Introspector的使用

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
   Student beanObj = new Student();
   //依据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();
 }
}
 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
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
下面是对 JavaBeanUtil 的优化: 1. 添加私有构造函数,避免该被实例化。 2. 在 Copy 方法中添加对参数为空的判断,避免空指针异常。 3. 在 Copy 方法中,使用 Map 存储属性名和对应的属性描述器,避免重复获取,提高效率。 4. 改进 Copy 方法,支持复制对象中包含的对象和对象集合。 5. 将 object2Map 方法改为 genericObjectToMap,更好地传达其作用。 6. genericObjectToMap 方法使用泛型,支持更多型的对象。 7. 在 genericObjectToMap 方法中,使用 Map 存储属性名和对应的属性值,避免重复获取,提高效率。 8. genericObjectToMap 方法中添加对参数为空的判断。 下面是优化后的代码: ``` 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.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public final class JavaBeanUtil { private JavaBeanUtil() { throw new AssertionError("Cannot instantiate the utility class"); } /** * 复制 source 对象的属性到 to 对象中 * * @param source 被复制的实体对象 * @param to 复制完后的实体对象 * @throws Exception */ public static void copy(Object source, Object to) throws Exception { if (source == null || to == null) { throw new IllegalArgumentException("参数不能为空"); } // 获取属性 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(); Map<String, PropertyDescriptor> destPropMap = new HashMap<>(); for (PropertyDescriptor desc : destProperty) { destPropMap.put(desc.getName(), desc); } for (PropertyDescriptor srcDesc : sourceProperty) { PropertyDescriptor destDesc = destPropMap.get(srcDesc.getName()); if (destDesc != null && destDesc.getWriteMethod() != null && srcDesc.getReadMethod() != null) { Type srcType = srcDesc.getReadMethod().getGenericReturnType(); Type destType = destDesc.getWriteMethod().getGenericParameterTypes()[0]; if (isAssignable(srcType, destType)) { Object value = srcDesc.getReadMethod().invoke(source); if (value != null) { if (value instanceof List) { List<?> srcList = (List<?>) value; List<Object> destList = new ArrayList<>(); for (Object srcObj : srcList) { Object destObj = srcObj.getClass().newInstance(); copy(srcObj, destObj); destList.add(destObj); } value = destList; } else { Object destObj = value.getClass().newInstance(); copy(value, destObj); value = destObj; } destDesc.getWriteMethod().invoke(to, value); } } } } } /** * 将对象转换为 Map * * @param obj * @return * @throws Exception */ public static Map<String, Object> genericObjectToMap(Object obj) throws Exception { if (obj == null) { throw new IllegalArgumentException("参数不能为空"); } Map<String, Object> map = new HashMap<>(); Field[] fields = obj.getClass().getDeclaredFields(); for (Field field : fields) { field.setAccessible(true); Type type = field.getGenericType(); Object value = field.get(obj); if (value == null) { continue; } if (type instanceof ParameterizedType) { ParameterizedType pType = (ParameterizedType) type; Type[] argTypes = pType.getActualTypeArguments(); if (argTypes.length == 1 && argTypes[0] instanceof Class && List.class.isAssignableFrom(field.getType())) { List<?> list = (List<?>) value; List<Map<String, Object>> listMap = new ArrayList<>(); for (Object objElem : list) { listMap.add(genericObjectToMap(objElem)); } value = listMap; } } else { if (!isAssignable(type, Map.class)) { map.put(field.getName(), value); } } } return map; } private static boolean isAssignable(Type srcType, Type destType) { if (srcType.equals(destType)) { return true; } if (destType.equals(Object.class)) { return true; } if (destType instanceof Class && srcType instanceof Class) { Class<?> destClass = (Class<?>) destType; Class<?> srcClass = (Class<?>) srcType; if (destClass.isAssignableFrom(srcClass)) { return true; } } return false; } } ``` 上述代码改进了原有的 copy 方法,支持复制对象中包含的对象和对象集合,同时转换对象到 Map 的方法 genericObjectToMap 也进行了优化,支持更多型的对象。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值