1 Claszz.getMethod(Object object, Class<?>... parameterTypes);

参数介绍:

object:方法名称

parameterTypes:方法对应的参数,eg:

test(int a, String b);

parameterTypes为 new Class[]{Integer.class, String.clss}

2 method.invoke(Object obj, Object... args);

参数介绍:

obj: 执行哪个bean的方法,需要new出来,或者从bean中拿出来。

args:参数

eg:test(int a, String b)

args为: List list = new ArrayList();

list.add(1);

list.add("ssss");

如果无法确定参数,则需要通过method.getParameterCount()获取参数个数

然后循环取参数类型methodInvoke.getParameterTypes()[i],一次给list添加参数