Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in my project i want to invoke the main method which is static . I got the object of type Class but i am not able to create an instance of that class and also not able to invoke the static method "main".Help

share|improve this question
Show us the code, please. – Adeel Ansari Mar 18 '10 at 4:37

3 Answers

// 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");

In case the method is private use getDeclaredMethod() instead of getMethod(). And call setAccessible(true) on the method object.

share|improve this answer

Fromthe Javadoc of Method.invoke():

If the underlying method is static, then the specified obj argument is ignored. It may be null.

What happens when you

Class klass = ...;
Method m = Klass.getDeclaredMethod(methodName, paramtypes);
m.invoke(null, args)
share|improve this answer
String methodName= "...";
String[] args = {};

Method[] methods = clazz.getMethods();
for (Method m : methods) {
    if (methodName.equals(m.getName())) {
        // for static methods we can use null as instance of class
        m.invoke(null, new Object[] {args});
        break;
    }
}
share|improve this answer
Why not use getMethod with the correct name instead of looping through all the methods? – mjaggard Apr 17 at 10:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.