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.
我最近在我的机器上安装了 JDK 1.6 update 43。从那时起,每当我尝试运行事件处理程序时,我都会遇到一个问题,即线程“AWT-EventQueue-0”中的异常
它指向哪个线程?
这就是 AWT 事件调度线程 (EDT)。涉及 AWT 或 Swing 的代码应该在该线程上运行。这是main您通常调用的线程(在“主”线程中运行)java.awt.EventQueue.invokeLater。
main
java.awt.EventQueue.invokeLater
查看您的堆栈跟踪。在某些时候,您会发现一些来自您自己的代码的条目。也许是空指针异常或类似情况。这是你必须要看的地方。