gpt4 book ai didi

java - 无法运行 "java HelloWorld"错误找不到主类

转载 作者:太空宇宙 更新时间:2023-11-04 13:21:55 25 4
gpt4 key购买 nike

It shows main method is not found in the class

我使用 netbeans 生成了 HelloWorld.jar 文件并尝试在 Windows 64 位命令提示符下执行,为什么?

我的代码是:

import java.applet.Applet;
import java.awt.Graphics;

public class HelloWorld extends Applet {
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
}
}

我尝试使用另一个 helloworld 代码:

public class HelloWorld {

public static void main(String[] args) {
System.out.println("Hello, World");
}

}

它说找不到或加载主类,为什么?

enter image description here

如何将java与多个jar文件一起使用,我遇到了问题,这里是输出:

enter image description here

最佳答案

更新您的代码,使其看起来更像

package coveragecodetool;

public class HelloWorld {

public static void main(String[] args) {
System.out.println("Hello, World");
}

}

在命令行中,更改为 coveragecodetool 目录上方的目录。

使用javaccoveragecodetool\HelloWorld.java编译程序并使用javacoveragecodetool.HelloWorld运行

关于java - 无法运行 "java HelloWorld"错误找不到主类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32981630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com