我可以让我的 Applet 结束得更优雅吗?

发布于 2024-07-07 09:54:04 字数 356 浏览 7 评论 0原文

我有一个 JApplet,其中包含各种 Swing 组件。 它还在 init() 中启动几个额外的线程,并且通常执行其他相当标准的 applet 操作。

(图标保留在系统托盘中),直到所有浏览器窗口都被关闭(即浏览器完全结束并从任务管理器中消失)

如果我关闭包含Applet的浏览器窗口,JRE不会消失 预期的行为还是 JRE 应该在包含 Applet 的浏览器窗口关闭时结束?

我有一个 destroy() 方法,但(目前)它只停止我在 init() 方法中启动的额外线程。 也许我应该在这里做更多的事情吗? 我还应该遵循其他最佳实践吗?

如果您想了解更多信息,请在评论中告诉我。

:-)

I have a JApplet which I contains various Swing components. It also starts a couple of extra threads in the init() and generally does other pretty standard applet-y things.

If I close the browser window containing the Applet, the JRE doesn't die (the icon remains in the system tray) until all the browser's windows have been closed (ie the browser has completely ended and disappears from the task manager)

Is this the expected behaviour or should the JRE end when the browser window enclosing the Applet closes?

I have a destroy() method, but (at present) it only stops the extra threads I started in the init() method. Should I be doing more in here maybe? Are there any other best-practises I should be following?

If you'd like any more info, please let me know in the comments.

:-)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

知足的幸福 2024-07-14 09:54:04

我相信 JRE 作为浏览器的插件加载,并且该图标应该保留在系统托盘中,直到浏览器结束。

其背后的原因是,如果您加载一个小程序,让 JRE 保持运行将加快未来小程序的加载时间。

I believe the JRE is loaded as a plugin to the browser, and the icon is supposed to remain in the system tray until the browser ends.

The reasoning behind this is that if you load one applet, leaving the JRE running will accelerate future applets' loading times.

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