Error: Could not find or load main class error when compiling in eclipse and command prompt But works in intelliJIDEA

Error: Could not find or load main class error when compiling in eclipse and command prompt But works in intelliJIDEA

我一直面临这个简单的问题,但无法解决。在 eclipse 中以及从命令提示符 运行ning 中获取此错误。

我知道这个问题在这里被问了很多次,但并没有安静地从任何一个那里得到解决方案。

只是想了解事情。这是我拥有的这个简单易用的试用程序。

package com;

public class Test {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        System.out.println("Hellooooooo");
    }

}

在日食中我得到这个Error: Could not find or load main class com.Test

现在当我从命令提示符尝试时。

C:\workSpaceLatest\Test\src\com>java Test
Error: Could not find or load main class Test

当我运行C:\workSpaceLatest\Test\src\com>javac Test.java没有错误也没有输出

但在 IntelliIDEA 中它工作正常。为什么会这样。 有人帮助我一次理解这一点。

**P.S :指出任何有最佳答案的帖子或问题。不过我还没找到。

因为你有 com 作为包 class 名称将是 com.Test 所以 运行 class 运行 来自 C:\workSpaceLatest\Test\src编译后文件夹如下

C:\workSpaceLatest\Test\src>java com.Test

注意:您可以像现在一样编译 class。