Respostas:
// String.class here is the parameter type, that might not be the case with you
Method method = clazz.getMethod("methodName", String.class);
Object o = method.invoke(null, "whatever");
Caso o método seja de uso privado, em getDeclaredMethod()
vez de getMethod()
. E chame setAccessible(true)
o objeto de método.
String methodName= "...";
String[] args = {};
Method[] methods = clazz.getMethods();
for (Method m : methods) {
if (methodName.equals(m.getName())) {
// for static methods we can use null as instance of class
m.invoke(null, new Object[] {args});
break;
}
}
public class Add {
static int add(int a, int b){
return (a+b);
}
}
No exemplo acima, 'add' é um método estático que aceita dois números inteiros como argumentos.
O snippet a seguir é usado para chamar o método 'add' com as entradas 1 e 2.
Class myClass = Class.forName("Add");
Method method = myClass.getDeclaredMethod("add", int.class, int.class);
Object result = method.invoke(null, 1, 2);
Link de referência .