Eclipse中遇到Thetype XXX cannot be resolved. It is indirectly referenced from required .classfiles错误.....,查找的解决办法如下:


Itis indirectly referenced from required .class file

原因:你正要使用的类调用了另一个类,而这个类又调用了其他类,这种关系可能会有好多层。而在这个调用的过程中,某个类所在的包的缺失就会造成以上那个错误。

解决方法:导入缺失的包

:
The project wasnot built since its build path is incomplete. Cannot find the class file forjava.lang.Object. Fix the build path then try building this project 
The type java.lang.Object cannot be resolved. It is indirectly referenced fromrequired .class files

出现以上讯息的原因是因为你装了多个版本的jrejdk的关系。本来Eclipse在建立项目时,会自动参照你的jre路径,但多个版本就没办法了。

你只能手动建立… 
1.
进入window\preferences\java\InstalledJREs 
1)
Add 
2)
输入JRE Name, JDK1.5.0.03 
3)JRE home directory,
选择安装的路径 
4)
OK 
2.
进入Project\properties\JavaBulid Path 
1)Add library 
2)
JRE SystemLibrary后按Next 
3)
workplacedefault JRE后按finish...