使用 eclipse 运行具有不同参数的应用程序的多个实例
我正在尝试构建客户端服务器程序。 所以我应该使用不同的端口同时运行我的程序。 程序通过参数获取端口。
有什么方法可以做到这一点? 谢谢
I'm trying to build client server program.
So I should run my program simultaneously with diffrent ports.
The program gets the port through the arguments.
What is the way to do that?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建启动配置(如 @Konstantin 提到的)并向“参数”>“程序参数”选项卡添加参数时,您可以使用变量,以便 Eclipse 在每次启动时都会询问您参数。例如:
-port ${string_prompt}
When creating launch configurations (as @Konstantin mentions) and adding parameters to the Arguments>Program Arguments tab you can use a variable so that eclipse will ask you for the parameter on every launch. ex:
-port ${string_prompt}
如果下拉“运行”工具栏按钮下的菜单,您将看到“运行配置...”。这将打开一个对话框,让您定义任意数量的启动配置。然后使用此下拉菜单使用不同的启动配置启动具有不同参数的应用程序。
If you pull down the menu under the Run toolbar button, you will see "Run Configurations...". This will open a dialog to let you define any number of launch configurations. Then use this pull-down menu to launch your app with different parameters using different launch configurations.