Eclipse中This compilation unit is not on the build path解决办法
程序员文章站
2022-04-28 09:24:11
...
出现This compilation unit is not on the build path(此编译单元不在生成路径上)提示,是因为项目文件缺失。此时.java文件前面的图标与正常的.java文件图标是有区别的,可用自己正常的项目对比观察。
解决办法:找到项目根目录下的.project文件,修改,加入jdt支持,我的项目修改后如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>V4</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.apache.ivyde.eclipse.ivynature</nature>
</natures>
</projectDescription>
上一篇: 这一年最感谢谁
下一篇: java读取jar中的资源文件