// String.class here is the parameter type, that might not be the case with youMethod method = clazz.getMethod("methodName", String.class);Object o = method.invoke(null, "whatever");如果该方法是私有使用getDeclaredMethod()而不是getMethod()。并调用setAccessible(true)方法对象。