AWT-EventQueue 线程和 AWT-Shutdown 线程未关闭

发布于 2024-11-16 17:09:44 字数 91 浏览 1 评论 0原文

AWT-EventQueue 线程和 AWT-Shutdown 线程在我们的应用程序中没有关闭。是否有一种调试技术可以找出它们不存在的原因?有什么特别需要寻找的东西吗?

The AWT-EventQueue thread and AWT-Shutdown thread are not shutting down in our application. Is there a debugging technique for finding out why they are not? Any special things to look for?

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

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

发布评论

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

评论(1

月朦胧 2024-11-23 17:09:44

如果您的意思是关闭所有窗口后 JVM 没有正常退出,那么请查看以下几点:

  • 检查所有窗口是否已正确处理,而不仅仅是简单地使其不可见;其中包括由 Swing(或 AWT)作为无主对话框的所有者创建的不可见窗口。为此,您可以检查Window.getWindows()
  • 确保在处理所有窗口后没有活动的Thread(守护进程除外),
  • 确保您的应用程序不是由Java Web启动的开始,因为在这种情况下您必须调用 System.exit(0) (这是 JWS 的一个已知错误)

希望这有助于回答您的问题。

此外,最近还有一个关于 Swing 窗口垃圾收集的 这个 SO 问题

If you mean that the JVM doesn't exit properly after closing all windows, then look at the following points:

  • check that ALL windows have been disposed properly, not just simply made invisible; that includes the invisible window created by Swing (or AWT) as the owner of ownerless dialogs. For this you can check Window.getWindows()
  • make sure you have no active Thread (except daemons) after disposing of all windows
  • ensure that your application was not launched by Java Web Start, because in this case you must call System.exit(0) (that's a known bug of JWS)

Hope this helps answer your question.

Besides, there was also this SO question recently about garbage collection of Swing windows.

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