当前位置: 代码迷 >> Eclipse >> Myeclipse遇到The type XXX cannot be resolved.的有关问题
  详细解决方案

Myeclipse遇到The type XXX cannot be resolved.的有关问题

热度:17   发布时间:2016-04-23 00:43:46.0
Myeclipse遇到The type XXX cannot be resolved.的问题

刚才从eclipse中将工程文件导入Myeclipse的时候,报错The type XXX cannot be resolved. It is indirectly referenced from required .class files错误,出现这个错误一般有两个问题:
一:?
It is indirectly referenced from required .class file

原因:你正要使用的类调用了另一个类,而这个类又调用了其他类。而在这个调用的过程中,某个类所在的包的缺失就会引起以上那个错误。

解决方法:导入缺失的jar包

二:
The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project?
The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files

?

出现这个问题的原因是Eclipse安装了多个版本的jre或者jdk,我出现这个问题的原因是我之前的项目再eclispe上面jre的版本是1.7,而导入的Myecilpse的版本是1.6,jre版本不同。

手动add 1.7版本的jre。
1. window\preferences\java\Installed JREs?
? ? Add-->?JRE Name, 例JDK1.7.0?JRE?-->home directory, 选择安装的路径-->OK?

2. 进入Project\properties\Java Bulid Path?
? ?Add library?-->?JRE System Library-->workplace default JRE选择刚才安装的jre

??

  相关解决方案