Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检测用户何时关闭(导航离开)或刷新带有 JavaFX 小程序的网页?我想在我的代码中对这些事件进行一些清理。
Java Applet 有一些回调方法可以做到这一点,但我将如何在浏览器中运行的 JavaFX 中做到这一点?
两步:
FX.addShutdownAction(myfunction);
run()
我在这里没有完整的代码,但我希望这是一个开始。您可能不需要执行第 1 步。