如何在不指定类路径的情况下启动java应用程序?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以通过编写清单文件,然后运行 java -jar Yourjarfile.jar
yes, you can by writing a manifest file, and then running java -jar Yourjarfile.jar