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

I'm learning Java am having trouble running an example program.

I have two files:

GoodDog.java:

    class GoodDog {
    private int size;
    public int getSize() {
      return size;
    }

    public void setSize(int s) {
      size = s;
    }

    void bark() {
      if (size > 60) {
        System.out.println("Wooof! WoooF!");
      } else if (size > 14) {
        System.out.println("Ruff! Ruff!");
      } else {
        System.out.println("Yip! Yip!");
      }
    }
}

GoodDogTestDrive.java:

    class GoodDogTestDrive {
    public static void main (String[] args) {
      GoodDog one = new GoodDog();
      one.setSize(70);
      GoodDog two = new GoodDog();
      two.setSize(8);
      System.out.println("Dog one: " + one.getSize () );
      System.out.println("Dog two: " + two.getSize () );
      one.bark();
      two.bark();
    }
}

They are typed out exactly the way they are in the book and compile without issue. When I try to run GoodDogTestDrive I get this:

nephi-shields-mac-mini:/Developer/MyProjects/GoodDog nephishields$ java GoodDogTestDrive.class
java.lang.NoClassDefFoundError: GoodDogTestDrive/class
Exception in thread "main" nephi-shields-mac-mini:/Developer/MyProjects/GoodDog nephishields$ 

What am I doing wrong?

share|improve this question
I'm looking for the generic question which answers questions of this nature, they are extremely common and you should be able to figure it out by looking at a related post. If anybody beats me to the URL please post it. – Mark Peters Apr 7 '11 at 21:03
1  
Every time you put a space next to the parens, I cringe. – alternative Apr 7 '11 at 21:09

4 Answers

up vote 10 down vote accepted

Don't include the .class in the command:

java GoodDogTestDrive
share|improve this answer
Thanks it works! I wonder why removing .class makes it work... I'll have to google it. – is_shields Apr 7 '11 at 23:29
I made that same mistake when I started through that book ;) – Bill Mote Jun 21 '11 at 14:21

If the GoodDog class file is not located at the current working directory you will need to set the classpath on your java command....

java GoodDogTestDrive -cp ./path/to/gooddog/
share|improve this answer

just run the program with "java yourClass".

Do not use .class in the end.

Try it and let us know.

share|improve this answer

Here i was facing problem same problem like

i resolved like 1.checking the class path in evironment variables 2.i opened project in navigator of eclipse and check the class files,my class files are in different folder not in bin folder i just copied different folder class files to bin folder then it get resolved

simply copy .class files to bin directory of your eclipse it get resolved for me..

K.Laxminarayana. DCTM

share|improve this answer

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.