// 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");
Если метод частный, используйте getDeclaredMethod()
вместо getMethod()
. И вызовите setAccessible(true)
для объекта метода.