Java WebStart 不允许多个实例
我的 WebStart 小程序无法在两个浏览器或两个浏览器选项卡/窗口中运行。因此我不想允许运行我的小程序的多个实例。
有谁知道一种方法来阻止小程序的第二个实例运行或检查我的小程序实例在新实例初始化期间是否已经在运行?
My WebStart applet can't work in two browsers or two browser tabs/windows. Therefore I don't want to allow running multiple instances of my applet.
Does anyone know a way to prevent a second instance of an applet from running or check if an instance of my applet is already running during initialization of a new one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
SingleInstanceService< /代码>
。请参阅此处的示例:
但您必须记住稍后取消注册该实例。因此,也许更好的方法(这是一个 hack :))是在开始时尝试监听 TCP 端口,如果失败,则不要启动。这样,如果您在退出之前忘记停止监听 TCP 端口,您仍然会“未注册”,因为 TCP 端口将被操作系统自动关闭。
Use the
SingleInstanceService
. See an example here:But you have to remember to unregister the instance later. So maybe a better way (it is a hack :) ) would be to try to listen to a TCP port in the beginning and if it fails you do not start. In this way if you forgot to stop listening to the TCP port before exiting you will still be "unregistered" because the TCP port will be closed automatically by the OS.