关于Java:”无法找到或加载主类”错误的原因是什么?could not find or load main class

whats the reason for the “could not find or load main class ”error?

本问题已经有最佳答案,请猛点这里访问。

更多的解释:在编写规则的"hello word"代码时,我总是遇到这个错误,注意编译没有任何错误(我指的是运行时出现的错误)&我使用TeBPAD编写Java程序。

代码是

1
2
3
4
5
6
7
class HelloWorld
{
    public static void main (String args[])
    {
        System.out.println("Hello World!");
    }
}


从零开始的地狱世界:

  • 创建一个文件夹来执行Hello World代码
  • 1
    2
    3
    cd ~
    mkdir test
    cd test
  • 创建和编辑HelloWorld文件
  • 1
    gedit HelloWorld.java

    代码:

    1
    2
    3
    4
    5
    public class HelloWorld{
        public static void main(String[] args){
            System.out.println("Hello world!");
        }
    }
  • 保存和编辑,注意大写字母。
  • 1
    javac HelloWorld.java
  • 执行
  • java HelloWorld

    输出:

    Hello world!