Java Web start - 如何检测应用程序何时关闭?
如何检测应用程序何时打开或关闭?
- 用户单击链接/按钮。
- Web 浏览器通过 Java Web Start 启动 Java 桌面应用程序。
此时,浏览器如何检测应用程序是否能够启动或无法启动,应用程序是否已启动并被用户关闭?
How do you detect when an App is open or closed?
- User clicks on link/button.
- Web Browser launches Java desktop app via Java Web Start.
At this point how do you have the browser detect if the App is able to launch or unable to launch, if the app has launched and closed by the user?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否通过
addWindowListener()
注册了包含windowClosing()
方法的类?Java明确允许您关闭进程,请检查以下代码:
Do you registered the class containing
windowClosing()
method viaaddWindowListener()
?Java explicitly allows you to close process, please check below code:
从拥有应用程序开始。通知服务器它已经启动(或即将退出)。然后设置一些机制让浏览器轮询服务器。
Start with having the app. inform the server that it has started (or is about to exit). Then set up some mechanism for the browser to poll the server.