Some projects cannot be imported because they already exist in the workspace等导入项

阅读更多

Eclipse导入工程时经常出现这几种问题,每次都是百度下解决,方便以后查找,转载到自己的博客

谢谢有心人的分享  转载 https://blog.csdn.net/luoxia0805/article/details/37969357

1. Some projects cannot be imported because they already exist in the workspace错误解决方案

 

     这个错误发生在你之前往工作空间新建/导入过此工程,但是后来删除了【注意:删除时你没有选“Delete project contents on disk(cannot be undone)”,所以即使删除了在MyEclipse里的工程,该工程依然在你的硬盘上

 

     解决办法:

 

     导入文件进MyEclipse空间步骤:左侧工作空间---右击---Import命令---General---Existing Projects into Workspace弹出如下对话框:

 

Some projects cannot be imported because they already exist in the workspace等导入项_第1张图片

 

 

 

        选中硬盘上你要导入工程的路径,然后必须是保证工程是“Copy projects into workspace”【复制一份到你的工作空间】,最后点击Refresh-------------ok,你就可以导入了,不会发生“Some projects cannot be imported because they already exist in the workspace”错误

 

 

 

2. 项目导入后,一般会因为缺少相关jar包而在工程文件上出现红色叹号,这时你右击导入的工程文件---Build Path---Configure Build Path【配置你缺少的jar包】,如下图:

 

Some projects cannot be imported because they already exist in the workspace等导入项_第2张图片

 

     Libraries下面的方框会出现你缺少的jar包【缺少的jar包上有红色叉】,你按照出现的名字从本地或从网上找到/下载好了,单击Add External JARs命令进行添加,然后把打红色叉的缺少的jar包的信息单击Remove命令删除就OK了。

 

 

 

项目导入成功,又配置好了项目jar包,接下来你就可以启动应用服务器和部署项目工作了。

 

 

 

3.有时在导入的工程中,在相关js文件上会有红色叉号导致工程上也出现红色叉号

 

    如下图:

 

Some projects cannot be imported because they already exist in the workspace等导入项_第3张图片

 

 

 

     由于js文件检测认证而导致的错误:

            只需在相应js文件右击---MyEclipse命令---单击 Exclude  from Validation使它从选中状态变成不选中状态---单击Run Validation进行验证---再次单击Exclude  from Validation变成选中状态,这样该js文件的红色叉号会消失,工程的红色叉号也会消失。

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