如何检测 Netbeans 中的 Java 应用程序锁定?

发布于 2024-10-10 11:38:36 字数 103 浏览 5 评论 0原文

我的 Java 应用程序有时会锁定,甚至不会响应窗口关闭鼠标单击,为什么?我使用 Netbean 作为 IDE,我必须使用“取消运行任务”来退出锁定的应用程序,有没有办法让它检测原因并修复它?

My Java app sometimes lock up, won't even respond to window close mouse click, why ? I'm using Netbean as IDE, I had to use "Cancel Running Task" to exit the locked app, is there a way for it to detect why and fix it ?

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

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

发布评论

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

评论(1

感性 2024-10-17 11:38:36

这通常意味着有东西正在占用 UI 线程。要找出原因,请在应用程序挂起时使用调试器挂起所有线程。然后找到UI线程,看看它在哪里。

This usually means that something is hogging the UI thread. To figure out what, use the debugger to suspend all threads when your app hangs. Then find the UI thread and see where it is at.

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