如何检测 Netbeans 中的 Java 应用程序锁定?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这通常意味着有东西正在占用 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.