I am fairly new to Java, and I am unable to figure out why I am getting NoSuchMethodError: main when I execute the following code. I am not sure what does the NoSuchMethodError is pertaining to. It looks like I have everything right. Please help me out here. Thanks a lot.

public class ThreadExample1 extends Thread 
 {
    static String[] msg = {"Java", "programming", "is", "the", "best"};
    public ThreadExample1(String id) 
    {
       super(id);
     }
    @Override
    public void run() 
        {
         try 
           {
             Output.displayList(getName(), msg);
            } 
    catch (InterruptedException ex) 
        {

        }
    }
  }

class Output 
 {
  public static void displayList(String name, String list[]) throws InterruptedException 
   {
     for (int i = 0; i < list.length; i++) 
    {
          Thread.currentThread().sleep((long) (3000 * Math.random()));
          System.out.println(name + list[i]);
         }
    }
   public static void main(String[] args) 
    {
         ThreadExample1 thread1 = new ThreadExample1("thread1: ");
         ThreadExample1 thread2 = new ThreadExample1("thread2: ");
         thread1.start();
         thread2.start();
         boolean t1IsAlive = true;
         boolean t2IsAlive = true;
         do 
          {
          if (t1IsAlive && !thread1.isAlive()) 
            {
              t1IsAlive = false;
              System.out.println("t1 is dead.");
             }
          if (t2IsAlive && !thread2.isAlive()) 
            {
              t2IsAlive = false;
              System.out.println("t2 is dead.");
              }
           }while (t1IsAlive || t2IsAlive);
     }
}
link|improve this question

2  
what you r trying in command prompt; java ThreadExample1 or java Output? – Naved Nov 23 '11 at 5:51
3  
If you're running with some variation of java ThreadExample1, that makes sense, since your main is in Output. If you're running java Output, though, then something is weird, because that ought to work. – Ernest Friedman-Hill Nov 23 '11 at 5:51
@Naved: I am doing javac ThreadExample1.java (ie the name of the file). Then I am doing java ThreadExample1 – indolent Nov 23 '11 at 5:55
1  
then do java Output since your main is in that class and not in ThreadExample1 – Naved Nov 23 '11 at 5:57
oh, i totally didn't realize that. Thank you so much guys! – indolent Nov 23 '11 at 6:06
show 1 more comment
feedback

4 Answers

up vote 1 down vote accepted

I don't have any problem compiling and executing the above code ... Keep in mind that when you want to execute it , you need to use this command line :

java Output

and NOT :

java ThreadExample1

because the main method is within the Output calss and not in ThreadExample1 ...

link|improve this answer
thanks very much! – indolent Nov 23 '11 at 6:09
feedback

Save the file as ThreadExample1.java and compile. After that you should run Output class but not the ThreadExample1 class. This is because you have added your main method inside Output class. But since you have made your ThreadExample1.java class public you have to save and compile using that name(javac ThreadExample1.java). After that java Output

link|improve this answer
thanks so much! – indolent Nov 23 '11 at 6:08
feedback

Take a look at code-snippet the main() method is in Output class.

Use following command line to launch the Output.main() method:

c:\>java Output
link|improve this answer
thank you very much!! – indolent Nov 23 '11 at 6:07
feedback

When you do compile a java program you do need to give the file name after javac.

like javac MyProgram.java

and when you do run it using java then you need to mention the name of the class that is having "public static void main(String args[])" method.

Say I have two classes in MyProgram.java : Class First and Class Second

and I have "public static void main(String args[])" in Class Second then I will do the following :

javac MyProgram.java
java Second
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.