您的位置:首页 > 编程语言 > Java开发

[Java Beginner] Problem to "Could not find the main class"

2013-04-09 14:14 447 查看
We are beginners of Java programming. We study Java development with JDK 1.6.0_35 and its shipped tools. We have already added the directory of Java utilities "Java\jdk1.6.0_35\bin" to the PATH system environment variable of Windows. Then we began the study
to Java.

We study Java with the book "First Head Java Second Edition". When we tried to compile and run a demo program in the book, we encountered a problem. The code is listed in the following:

Extracted from the book:

-------------------------------

public class Dog {

    String name;

    public static void main(String[] args) {

        Dog dog1 = new Dog();

        dog1.bark();

        dog1.name = "Bart";

        

        Dog[] myDogs = new Dog[3];

        myDogs[0] = new Dog();

        myDogs[1] = new Dog();

        myDogs[2] = dog1;

        

        myDogs[0].name = "Fred";

        myDogs[1].name = "Marge";

        

        System.out.print("last don't name is ");

        System.out.println(myDogs[2].name);

        

        int x = 0;

        while (x < myDogs.length) {

            myDogs[x].bark();

            x = x+1;

        }

    }

    public void bark() {

        System.out.println(name + " says Ruff!");

    }

    

    public void eat() { }

    

    public void chaseCat() { }

}

-------------------------------------

We typed the above code with Notepad, and then saved it as Dog.java. Then we compile the code with the javac in prompt:

F:\Programming\Java\Dog\javac Dog.java

The code is compiled successfully. But when we tried to run it, an exception raised:



The JVM told us that "Could not find the main class: dog." 

Oops, the code could pass through the compiler, so the code should be able to run.  What's the problem? Have no main class? We have already declared that!!! And the Dog.class file is existed in the program directory.

After checked the code again over again, about half an hour after, we finally found that the class name we want to run is wrong, it should be "Dog" not "dog". If we want to run the demo program, we should type in:

java Dog

Then, the miracle happened:



The Class name in Java is case-sensitive!!!!

We have searched for the above problem on the Internet, someone who told us that the problem is due to the JVM version is difference than the compiler version. Now we knew that a lilttle typos could also cause such errors.

Addition

If the above solution to the problem does not work, you may have to edit the system environment variables to add variable CLASSPATH, and set its value to include the string .\; into it. Note that, the string consists of a dot, a backslash and a semicolon.
Perhaps you should make such a string be presented in the beginning of the value for CLASSPATH. Like this:



By:

Ma Xiaoguang and Ma Xiaoming 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  编程 Java
相关文章推荐