Antworten:
// 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");
Falls die Methode für den privaten Gebrauch getDeclaredMethod()
statt ist getMethod()
. Und rufen Sie setAccessible(true)
das Methodenobjekt auf.
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);
}
}
Im obigen Beispiel ist 'add' eine statische Methode, die zwei Ganzzahlen als Argumente verwendet.
Das folgende Snippet wird verwendet, um die 'add'-Methode mit den Eingaben 1 und 2 aufzurufen.
Class myClass = Class.forName("Add");
Method method = myClass.getDeclaredMethod("add", int.class, int.class);
Object result = method.invoke(null, 1, 2);
Referenz Link .