通过命令提示符或批处理文件打开 eclipse 项目
我正在构建一个用于使用 Selenium Java 工具进行测试的应用程序。 有没有办法从命令行或通过批处理文件打开现有的 Eclipse 项目,以便用户只需单击按钮即可选择 Java 中的测试项目?
我发现这个命令用于构建一个项目
eclipsec.exe -noSplash -data "D:\Source\MyProject\workspace" -application org.eclipse.jdt.apt.core.aptBuild
,但我找不到用于打开一个项目的命令。
I am building an application that is for testing using Selenium Java tool.
Is there any way to open an existing eclipse project from the command line or through a batch file so that I can allow the users to select the testproject which is in Java with just a click of a button?
I found that this command if for building a project
eclipsec.exe -noSplash -data "D:\Source\MyProject\workspace" -application org.eclipse.jdt.apt.core.aptBuild
But I couldn't find one for opening one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果省略
-application
并简单地运行eclipse.exe -data "D:\Source\MyProject\workspace"
,那么您的工作区将被打开。如果您只有一个项目,那么问题就解决了。如果没有,您可以轻松创建带有现有项目链接的新工作区。If you omit
-application
and simply runeclipse.exe -data "D:\Source\MyProject\workspace"
, then your workspace will be opened. If you have only one project there then issue is resolved. If not, you can easily create new workspace with a link to your existing project.