[Java:Eclipse]source not found-Note:This element has no attached source and the

 

调试时出现 source not found


或者


当鼠标悬停在变量上时出现:

Note:This element has no attached source and the javadoc could not be found in the attached javadoc

 

上述原因分析:
没有找到相应的class,如Iterator.class。

因为如果jdk安装时环境变量设置正确的话,Eclipse能自动找到src.zip里面的源代码并附加上。

解决方法:
1. 或者点击Edit Source Lookup Path添加jdk安装包下的src.zip,

    如我的路径:D:\Program Files\Java\jdk1.6.0_23\src.zip,等待一会儿会自动找到所需要的class
2. 或者去debug configuration里面的source选项卡手工附加代码
3. 或者在工程属性-》java build path-》libraries,找到你的structs的包,是可以设置源代码的,把源代码路径指到你下载的src包

你可能感兴趣的:(java,eclipse,jdk)