Risposte:
// 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");
Nel caso in cui il metodo sia un uso privato getDeclaredMethod()
anziché getMethod()
. E chiama setAccessible(true)
l'oggetto metodo.
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);
}
}
Nell'esempio sopra, 'aggiungi' è un metodo statico che accetta due numeri interi come argomenti.
Lo snippet seguente viene utilizzato per chiamare il metodo 'add' con input 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 di riferimento .