gpt4 book ai didi

java - 将 HelloWorld 编程编译到 jar 时出现 NoClassDefFoundError

转载 作者:行者123 更新时间:2023-11-30 04:22:57 25 4
gpt4 key购买 nike

这就是我所得到的。

我有我的“MyJava”文件夹,其中包含所有内容。

MyJava/src/a/HelloWorld.javaMyJava/src/b/Inner.javaMyJava/bin/MyJava/manifest.txt

HelloWorld.java:

public class HelloWorld {

public static void main(String[] args) {

System.out.println("Hello, World");

Inner myInner = new Inner();
myInner.myInner();
}
}

内部.java:

public class Inner {

public void myInner() {
System.out.println("Inner Method");
}
}

list .txt:

Main-Class: HelloWorld

First I compile the .javas to .class:

javac -d bin src/a/HelloWorld.java src/b/Inner.java

Now I put these into a .jar filejar cvfm myTwo.jar manifest.txt bin/*.class

now I try run the jar:java -jar myTwo.jar

And I get:

Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld
...
Could not find the main class: HelloWorld. Program will exit.

我知道这是一个非常简单的问题,我错过了什么?

最佳答案

如果您检查 .JAR 中的文件,您会注意到您编译的类位于 bin 目录中(因此无法找到,因为您的 list 引用了顶层中的类)。
像这样更改您的 jar... 命令:

jar cvfm myTwo.jar manifest.txt -C bin .

另请参阅 "Creating a JAR File" section Java 教程。

关于java - 将 HelloWorld 编程编译到 jar 时出现 NoClassDefFoundError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16559169/

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