Java WebStart 不允许多个实例

发布于 2024-12-12 09:28:59 字数 124 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自控 2024-12-19 09:28:59

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文