JAVA反射机制 通过反射对javabean进行内省操作

本文介绍了一个使用Java反射和Introspector API来获取并修改Bean属性值的例子。通过具体的测试类展示了如何利用这些API来操作Bean对象。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

bean类

package com.sg.bean;

public class TestBeanReflex {
    private String x;
    private String y;
    public TestBeanReflex(String x, String y) {
        this.x = x;
        this.y = y;
    }
    public String getX() {
        return x;
    }
    public void setX(String x) {
        this.x = x;
    }
    public String getY() {
        return y;
    }
    public void setY(String y) {
        this.y = y;
    }
    }

 
 

 

测试类

package com.sg.bean;

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;

public class IntroSpectorTest {
    public static void main(String[] args) throws Exception {
        TestBeanReflex tbr = new TestBeanReflex("3", "5");

        String propertyName = "x";
        String value = "7";
        //获取bean的属性值
        Object obj = getProperty(tbr, propertyName);
        System.out.println(obj);
        //可以修改bean属性的值
        setProperty(tbr, propertyName, value);
        System.out.println(tbr.getX());
       
    }

    private static void setProperty(Object tbr, String propertyName,
            Object value) throws IntrospectionException, IllegalAccessException,
            InvocationTargetException {
        PropertyDescriptor pd = new PropertyDescriptor(propertyName, tbr.getClass());
        Method method = pd.getWriteMethod();
        method.invoke(tbr, value);
    }

    private static Object getProperty(Object tbr, String propertyName)
            throws IntrospectionException, IllegalAccessException,
            InvocationTargetException {
        /*PropertyDescriptor pd = new PropertyDescriptor(propertyName,
                tbr.getClass());
        Method method = pd.getReadMethod();
        Object obj = method.invoke(tbr);*/
       
        BeanInfo beanInfo  = Introspector.getBeanInfo(tbr.getClass());
        //getPropertyDescriptors因为此方法返回的是bean的所有变量
        PropertyDescriptor[] pds = beanInfo.getPropertyDescriptors();
        Object obj  = null;
        for (PropertyDescriptor pd : pds) {
            //通过判断可以只获取你想要的
            if (pd.getName().equals(propertyName)) {
                Method method = pd.getReadMethod();
                obj = method.invoke(tbr);
                break;
            }
        }
        return obj;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值