Java反射动态执行方法

Posted CodeLogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java反射动态执行方法相关的知识,希望对你有一定的参考价值。

方法类

public class Pub_Methods 
    private String myString = "测试字符串";
    
    public String getMyString() 
        return myString;
    

    public void setMyString(String myString) 
        this.myString = myString;
    

反射动态调用

import org.junit.Test;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

public class MyDemo 
    
    @Test
    public void test() throws NoSuchMethodException, InvocationTargetException, IllegalAccessException 
        Pub_Methods pubMethods = new Pub_Methods();
        Method method;

        //所有类方法对象
        Method[] methods = pubMethods.getClass().getMethods();
        for (Method m:methods)
            //只获取SET方法
            if (m.getName().startsWith("set"))
                System.out.print("方法名称:"+m.getName()+"\\t");
                System.out.println("参数类型:"+m.getParameterTypes()[0].getName());
            
        
        
        //无参调用
        method = pubMethods.getClass().getMethod("getMyString");
        String myStr = (String) method.invoke(pubMethods);
        System.out.println("无参调用返回结果:"+myStr);
        
        //有参调用
        method = pubMethods.getClass().getMethod("setMyString", String.class);
        method.invoke(pubMethods,"新的参数值");
        System.out.println("有参调用返回结果:"+pubMethods.getMyString());
        
       

输出结果:

方法名称:setMyString 参数类型:java.lang.String
方法名称:setMyList 参数类型:java.util.List
无参调用返回结果:测试字符串
有参调用返回结果:新的参数值

以上是关于Java反射动态执行方法的主要内容,如果未能解决你的问题,请参考以下文章

Java反射动态执行方法

通过反射动态执行对象的方法的步骤是啥

java反射机制与动态代理

java反射与动态代理的理解

Java利用反射执行Spring容器Bean指定的方法,支持多种参数自动调用

Java反射-1