-1

当我Tareena.java在 C:/FindTheWallet/Proj/ 文件夹中编译文件时会出现什么问题?我越来越ClassNotFoundException

下面是我的代码:

class Tareena 
{

    public static void main(String args[])
    {
        System.out.println("Still working on it ? ");
    }
}
4

2 回答 2

0

The reason for your problem is Tareena.class is not in your classpath when you are running your program. Follow this link

于 2013-05-31T12:30:12.220 回答
0

首先使用编译你的类javac Tareena.java,然后使用执行它java Tareena

于 2013-05-31T13:05:43.043 回答