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

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 



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值