The project was not built since its build path is incomplete 意思是 该项目未构建,因为其构建路径不完整

今天早上,打开电脑准备码代码的时候,发现项目工程中的.java文件一打开出现好多的莫名其妙的红色下划线,接着自己就去运行一下项目,就提示项目有错误,先改正错误才可以运行。查看错误运行,一个莫名其妙的.Java文件报错。

错误提示: 1、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(这个提示来源整个项目)

意思是:该项目未构建,因为其构建路径不完整。无法找到java.lang.Object类文件。修复生成路径,然后尝试构建此项目

 2、The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files(这个提示来源那个莫名其妙的.Java文件)

意思是:类型java.lang.Object无法解决。它间接引用所需的类文件


大概就是上面这么一个情况。

解决如下:

1.重新选择JRE路径然后clean



2.如果上面的步骤都做了还是不行,那就有可能是你Eclipse的版本过高,Eclipse没反应过来,通过如下方法解决

打开工程下的:project.properties-->target=android-20(修改为更低版本)-->保存后-->Fix project properties


你可能感兴趣的:(android)