显示“无法从 TestExample.jar 加载主类清单属性”

发布于 2025-01-04 09:36:42 字数 124 浏览 1 评论 0原文

Failed to load Main-Class manifest attribute from TestExample.jar 

当我尝试运行可执行jar文件时如何解决上述问题?

Failed to load Main-Class manifest attribute from TestExample.jar 

How to resolve the above problem of when I am trying to run the executable jar file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

り繁华旳梦境 2025-01-11 09:36:42

您是否在指定 Main-Class 的 jar 中包含了 META-INF 文件?

命令:jar cvfm MyJarName.jar manifest.txt *.class

cvfm 的意思是“创建一个 jar;显示详细输出;指定输出 jar 文件名;指定清单文件名。”

Did you include the META-INF file in the jar which specifies the Main-Class ?

Command: jar cvfm MyJarName.jar manifest.txt *.class

cvfm means "create a jar; show verbose output; specify the output jar file name; specify the manifest file name."

风追烟花雨 2025-01-11 09:36:42

您需要在 Manifest 中指定主类。这就是指定 jar 入口点的方式。您在此处指定的类需要有一个 main 方法,该方法在运行 jar 时首先执行。

看一下这个以获得很好的解释: http://docs.oracle .com/javase/tutorial/deployment/jar/appman.html

You need to specify the main class in the Manifest. This is how you specify the entry point into the jar. The class you specify here needs to have a main method which is executed first when running the jar.

Take a look at this for a good explanation: http://docs.oracle.com/javase/tutorial/deployment/jar/appman.html

等风来 2025-01-11 09:36:42

Java 有两种方法来启动 JAR 文件。第一个指定 JAR 文件和主类(具有静态 main(String[]) 方法的类):

java -cp .../example.jar com.example.Main

第二个方法使用 -jar 参数(而不是-classpath 参数)。它不允许指定主类:相反,它希望在 清单。 (META-INF/MANIFEST.MF 包含一行 Main-Class: com.example.Main)。

java -jar example.jar

您的错误消息意味着您有一个 JAR 文件,该文件未构建为可执行 JAR 文件(没有主类的清单条目)。您要么需要以不同的方式构建 JAR,要么使用命令行的第一个变体启动它。顺便说一句:当您双击带有 *.jar 文件扩展名的文件时,通常会使用第二种变体。

Java has two methods to start with a JAR file. The first one specifies the JAR file and the main class (the class with the static main(String[]) method):

java -cp .../example.jar com.example.Main

The second method uses the -jar parameter (instead of the -classpath parameter). It does NOT allow to specify the main class: instead it expects the main class to be specifies inside of the JAR file in the Manifest. (META-INF/MANIFEST.MF containing a line Main-Class: com.example.Main).

java -jar example.jar

Your Error message means you have a JAR file which is not constructed as an executable JAR file (no manifest entry for the main class). You either need to build the JAR differently or start it with the first variant of the command line. BTW: the second variant is often used when you double click a file with the *.jar file extension.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文