Source Code : The next example calls a class method with 2 arguments:
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
The next example calls a class method with 2 arguments:
import java.lang.reflect.Method;
public class Main{
static void invoke(String aClass, String aMethod, Class[] params, Object[] args) {
try {
Class c = Class.forName(aClass);
Method m = c.getDeclaredMethod(aMethod, params);
Object i = c.newInstance();
Object r = m.invoke(i, args);
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
invoke("Class1", "say", new Class[] { String.class, String.class }, new Object[] {
new String("Hello"), new String("World") });
}
}
class Class1 {
public void say(String s1, String s2) {
System.out.println(s1 + " " + s2);
}
}
Thank with us