Invoking a Java Method by Name using Reflection
13/07/2010 2 Comments
This is an example:
Class<?> c = Class.forName("class name");
Method method = c.getDeclaredMethod ("method name", parameterTypes);
method.invoke (objectToInvokeOn, params);
Just It
Bye





