New Java programmers often encounter this message when they attempt to run a Java program:

'java.lang.NoSuchMethodError: main Exception in thread "main"'

What does this mean, what can cause it, and what should a new Java programmer do to fix it?

link|improve this question
Just guessing they're calling a function that doesn't exist, but the compiler is supposed to stop you if you were to do that. – eternalmatt Mar 23 '11 at 15:04
Wikification complete. – Tim Post Mar 23 '11 at 15:07
feedback

5 Answers

The problem is that you do not have a public void main(String[] args) method in the class you attempt to invoke.

It

  • must be static
  • must have exactly one String array argument (which may be named anything)
  • must be spelled m-a-i-n in lowercase.

Note, that you HAVE actually specified an existing class (otherwise the error would have been different), but that class lacks the main method.

link|improve this answer
feedback
up vote 3 down vote accepted

When you use the java command to run a Java application from the command line; e.g.

    java some.AppName arg1 arg2 ...

the command loads the class that you nominated, and then looks for the entry point method called "main". More specifically, it is looking for a method that is declared as follows:

package some;
public class AppName {
    ...
    public static void main(String[] args) {
        // body of main method follows
        ...
    }
}

The specific requirements for the entry point method are:

  1. The method must be in the nominated class.
  2. The name of the method must be "main" with exactly that capitalization.
  3. The method must be public.
  4. The method must be static.
  5. The method's return type must be void.
  6. The method must have exactly one argument, and the type of that argument must be String[].

(The String[] argument is used to pass the arguments from the command line, and is required even if your application takes no command line arguments.)

If any one of the above requirements is not satisfied, the java command will fail with the message:

java.lang.NoSuchMethodError: main Exception in thread “main”

If you encounter this error, check that you have satisfied all 6 of the requirements listed above.

link|improve this answer
1  
The class doesn't have to be public actually. At least not in practice, I don't know maybe there's a spec that requires it but java can invoke a non-public class that has a public main method. – Mark Peters Mar 23 '11 at 15:46
Thanks ... updated. – Stephen C Mar 23 '11 at 16:01
feedback

The name of the exception suggests that the program tried to call a method that doesn't exist. In this context, it sounds like the program does not have a main method, though it would help if you posted the code that caused the error and the context in which the code was run.

This might have happened if the user tried to run a .class file or a .jar file that has no main method - in Java, the main method is the entry point to begin executing the program.

Normally the compiler is supposed to prevent this from happening so if this does happen, it's usually because the name of the method being called is getting determined ar run-time, rather than compile-time.

To fix this problem, a new programmer must either add the midding method (assuming still that it's main that's missing) or change the method call to the name of a method that does exist.

Read more about the main method here: http://csis.pace.edu/~bergin/KarelJava2ed/ch2/javamain.html

link|improve this answer
feedback

Other answers are doing a good job of summarizing the requirements of main. I want to gather references to where those requirements are documented.

The most authoritative source is the VM spec (second edition cited). As main is not a language feature, it is not considered in the Java Language Specification.

Another good resource is the documentation for the application launcher itself:

link|improve this answer
feedback

Generally, it means the program you are trying to run does not have a "main" method. If you are going to execute a java program, the class being executed must have a main method

For example, in the file Foo.java

public class Foo {
    public static void main(args[]) {
        System.out.println("hello");
    }
}

This program should compile and run no problem - if main was called something else, or was not static, it would generate the error you experienced.

Every executable program, regardless of language, needs an entry point, to tell the interpreter, operating system or machine where to start execution. In Java's case, this is the static method main, which is passed the parameter args[] containing the command line arguments.
it is equivalent to int main(int argc, char** argv) in C

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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