previous next Invoking a Java Method by Name using Reflection Author: victorjabur July 13, 2010 2 This is an example: Class<?> c = Class.forName("class name"); Method method = c.getDeclaredMethod ("method name", parameterTypes); method.invoke (objectToInvokeOn, params); Just ItBye