Eclipse - 显示 Eclipse 如何使用 java.exe 运行项目
当我在 Eclipse IDE 中运行 Java 项目时,我假设它只是在后台调用 java.exe
或 javaw.exe
参数,例如它正在使用的classpath
以及它正在运行的实际类。
有没有办法让 Eclipse 显示此调用及其所有参数?理想情况下,我希望能够将其复制并粘贴
到命令窗口中,以在 Eclipse IDE
之外复制项目的运行。
When I run a Java project within the Eclipse IDE
, I assume in the background it is simply calling java.exe
or javaw.exe
with certain parameters, such as the classpath
it's using and the actual class it's running.
Is there a way I can make Eclipse
show this invocation, with all it's parameters? Ideally I'd like to be able to copy&paste
it into a command window to duplicate the running of the project outside of the Eclipse IDE
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(原始答案:2011 年 2 月)
在 Eclipse 中以调试模式启动程序。
然后,您可以在“调试”视图的属性中看到确切的命令(请参阅 此线程 或此线程)
Bug 10820 是关于“[java launch] Launch config: show cmd启动前的行”...但它被关闭为 WONTFIX。
更新(2012 年 3 月)
bbuser 在评论中报告了
(Original Answer: February 2011)
Launch your program in debug mode in Eclipse.
You can then see the exact command in the properties of the Debug views (see this thread or this thread)
Bug 10820 was about "[java launching] Launch config: show cmd line before launch"... but it is closed as WONTFIX.
Update (March 2012)
bbuser reports in the comment having