博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
对javabean的内省操作
阅读量:6000 次
发布时间:2019-06-20

本文共 2154 字,大约阅读时间需要 7 分钟。

 

import java.beans.BeanInfo;

import java.beans.IntrospectionException;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Map;

import org.apache.commons.beanutils.BeanUtils;

import org.apache.commons.beanutils.PropertyUtils;

public class IntroSpectorTest {

 /**

  * @param args
  */
 public static void main(String[] args) throws Exception {
  // TODO Auto-generated method stub
  ReflectPoint pt1 = new ReflectPoint(3,5);
  
  String propertyName = "x";
  //"x"-->"X"-->"getX"-->MethodGetX-->
  Object retVal = getProperty(pt1, propertyName);
  System.out.println(retVal);
  
  Object value = 7;
  
  setProperties(pt1, propertyName, value);

  System.out.println(BeanUtils.getProperty(pt1, "x").getClass().getName());

  BeanUtils.setProperty(pt1, "x", "9");
  System.out.println(pt1.getX());
  /*
  //java7的新特性
  Map map = {name:"zxx",age:18};
  BeanUtils.setProperty(map, "name", "lhm");
  */
  BeanUtils.setProperty(pt1, "birthday.time", "111");
  System.out.println(BeanUtils.getProperty(pt1, "birthday.time"));
  
  PropertyUtils.setProperty(pt1, "x", 9);
  System.out.println(PropertyUtils.getProperty(pt1, "x").getClass().getName());
  
 }

 private static void setProperties(Object pt1, String propertyName,

   Object value) throws IntrospectionException,
   IllegalAccessException, InvocationTargetException {
  PropertyDescriptor pd2 = new PropertyDescriptor(propertyName,pt1.getClass());
  Method methodSetX = pd2.getWriteMethod();
  methodSetX.invoke(pt1,value);
 }

 private static Object getProperty(Object pt1, String propertyName)

   throws IntrospectionException, IllegalAccessException,
   InvocationTargetException {
  /*PropertyDescriptor pd = new PropertyDescriptor(propertyName,pt1.getClass());
  Method methodGetX = pd.getReadMethod();
  Object retVal = methodGetX.invoke(pt1);*/
  
  BeanInfo beanInfo =  Introspector.getBeanInfo(pt1.getClass());
  PropertyDescriptor[] pds = beanInfo.getPropertyDescriptors();
  Object retVal = null;
  for(PropertyDescriptor pd : pds){
   if(pd.getName().equals(propertyName))
   {
    Method methodGetX = pd.getReadMethod();
    retVal = methodGetX.invoke(pt1);
    break;
   }
  }
  return retVal;
 }

}

 

转载地址:http://bsbmx.baihongyu.com/

你可能感兴趣的文章
仰视源代码,实现memcpy
查看>>
HTTP gzip和deflate的几点区别
查看>>
{Repeater控件} Repeater控件的用法流程及实例
查看>>
AD账号解锁
查看>>
English - in the light of(按照,根据)与according to的区别是什么
查看>>
浅析linux内核中的idr机制
查看>>
【转】.so兼容32位和64位
查看>>
PowerDesigner跟表的字段加注释
查看>>
w !sudo tee %
查看>>
javascript面试题:如何把一句英文每个单词首字母大写?
查看>>
URAL 1962 In Chinese Restaurant 数学
查看>>
计算 TPS,QPS 的方式
查看>>
群晖NAS使用Docker安装迅雷离线下载出现the active key is not valid.
查看>>
spring boot 2使用Mybatis多表关联查询
查看>>
Making HTTP requests via telnet - Tony's Place
查看>>
千元机市场再添“新宠”,红米Note7和vivo Z3谁才是千元王者
查看>>
荣耀10GT升级EMUI 9.0体验分享:这可能是最好用的手机操作系统
查看>>
ZStack基于华芯通打造ARM国产云平台 助力云上贵州多项应用
查看>>
200本“保护日记”记录黄山迎客松生长变化
查看>>
多方力量携手呵护“中华水塔”青海三江源
查看>>