如何在不指定类路径的情况下启动java应用程序?

发布于 2024-12-02 13:53:03 字数 351 浏览 0 评论 0原文

我是 java 新手,正在尝试 hello world 应用程序。 我已将应用程序从 Eclipse 导出到 jar 中,我确实指定了启动配置,当我从命令行运行它时,我检索到

Error: Could not find or load main class

That can be fix by指定类路径,如下所示:

java -cp .:myjar.jar MyMainClass

但是,这确实很不方便。有什么方法(最好是通过 eclipse)将 MyMainClass 指定为 jar 文件内的元数据,这样我就不必每次启动应用程序时都将其写下来?

I'm new to java and I'm experimenting with hello world app.
I've exported the app from Eclipse into a jar, i DID specify the launch configuration, and when I ran it from command line, I retrieved

Error: Could not find or load main class

That can be fixed by specifying class path like this:

java -cp .:myjar.jar MyMainClass

However, this is really inconvenient. Is there any way, preferably through eclipse, to specify MyMainClass as a metadata inside the jar file so I don't have to write it down every time I launch the app?

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

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

发布评论

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

评论(1

全部不再 2024-12-09 13:53:03

是的,您可以通过编写清单文件,然后运行 ​​java -jar Yourjarfile.jar

yes, you can by writing a manifest file, and then running java -jar Yourjarfile.jar

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