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.
每当我使用 Eclipse 调试具有 swing gui 的 Java 应用程序时,当它到达与 swing 相关的行时,它无法正确调试是否正常。
这是一个例子:
int number = 0; //Debugs fine textbox.setText(Integer.toString(number)); //Takes me to this window saying "Source not Found"
下图详细说明了当调试器到达与 swing GUI 相关的行时出现的情况:
确保您已安装 JDK;Java 安装的根文件夹中应该有一个文件src.zip。没有它,Eclipse 就找不到源代码。
src.zip
确保 Eclipse 获取源代码。对于前 5 个左右的条目,在 JRE 定义对话框中的 JAR 上必须有一个微小的覆盖。更重要的是rt.jar
rt.jar
您可能也将调试断点放在源类上。我希望您遵循以下建议。
我希望这对你有用。