eclipse 中添加工程 Some projects cannot be imported because they already exist in the workspace

第一次从外部文件导入HelloWorld工程到workspace目录中,成功。

删除后,再次从外部导入workspace目录提示 Some projects cannot be imported because they already exist in the workspace

eclipse中删除HelloWorld工程时没有勾选Delete project contents on disk(cannot be undone)则不会删除文件。

这时再次添加HelloWorld工程时提示

Some projects cannot be imported because they already exist in the workspace

原因:workspace中有HelloWorld工程文件。

这时可以将copy projects into workspace复选框不打勾,点击右方的refresh。

可以添加成功,当然这个工程没有copy到workspace目录中。

也可以这样改正:将第一次导入并copy到workspace中的HelloWorld工程,用这种方法导入,再次删除时勾选上Delete project contents on disk(cannot be undone),这样将workspace中的HelloWorld工程彻底删除,之后导入外部HelloWorld工程时可以成功。

eclipse 中添加工程 Some projects cannot be imported because they already exist in the workspace

时间: 2024-12-18 07:02:30

eclipse 中添加工程 Some projects cannot be imported because they already exist in the workspace的相关文章

Eclipse导入工程Some projects cannot be imported because they already exist in the workspace

记录一下本次出错原因,以及解决方法 错误原因: 第一次导入后,删除工程,没有没有勾选Delete project contents on disk(cannot be undone) 解决方法: 1 找到要导入的工程文件夹,找到.project,用记事本打开 2 找到<name><name\>字段,修改它的内容,改为新的名字,即可正常导入. 原文地址:https://www.cnblogs.com/zhuolove/p/9608046.html

Eclipse Some projects cannot be imported because they already exist in the workspace 解决办法

MyEclipse 或Eclipse 从外部导入工程时,  workspace目录提示 Some projects cannot be imported because they already exist in the workspace finish是灰色的 点击不了下一步,解决办法是: 这种情况基本是以下错误操作造成: 1.手动删除本地磁盘下的工程目录 2.删除时,没有勾选Delete project contents on disk(cannot be undone) 以上2种操作,ec

Some projects cannot be imported because they already exist in the workspace

原文地址: Some projects cannot be imported because they already exist in the workspace - 浅尝辄止的博客 - 博客频道 - CSDN.NET http://blog.csdn.net/cq0072008/article/details/8393980   1.Some projects cannot be imported because they already exist in the workspace 2.S

【eclipase项目导入错误】Some projects cannot be imported because they already exist in the workspace

原因:<professional for java web applications>书中代码工程有误,.project文件里的<name>****</name>没有更正成Customer-Support-v2,导致和之前的一个项目名称相同, 而之前的那个项目工程已导入到SVN 解决办法:修改.project文件里的name描述 <projectDescription> <name>Customer-Support-v2</name>

Eclipse中添加Android系统jar包

这样做的好处是,可以使用Eclipse开发系统应用了,这样可以调用系统中才使用的API. 1.首先在项目中右击->属性.如图所示依次操作 2.添加User Library 3.第一次要新建User Library名字 注:一定要勾选上System library(addedto the boot class path)否则会出现错误1. 4.添加jar包 2.${ANDROID_SOURCE}/out/target/common/obj/JAVA_LIBRARIES/framework_inte

ECLIPSE中部署工程报“Undefined exploded archive location”错误的解决方法。

错误信息为:Undefined exploded archive location 原因:在工程转移过程中,导致工程的配置文件出错: 解决方法:           1.在工程目录下的.mymetadata文件中可能webrootdir被改无效了(把下面内容拷到你的.mymetadate文件中的相应位置上):或者有可能少了这context-root这个属性:添加上这个属性即可,内容如下:             context-root="/上面的name属性值"          

windows下载eclipse中添加android源码

windows下载eclipse中添加android源码 Android源码支持多种IDE,如果是针对APP层做开发的话,建议大家使用Eclipse开发环境.在源码路径(~/development/ide/eclipse)下,Android提供了.classpath配置文件(备注:该文件为隐藏文件).将该文件拷贝到源代码的根目录,如上图所示. 接下来,再在源码的根目录创建.project文件. 创建此文件时,可以在命令行使用echo  test >.project .然后再打开编辑 文件内容如下

eclipse中的工程中有叉叉

在eclipse中的工程中有叉叉,并且不是编译的错. 那么,让eclipse自己告诉你原因吧.菜单Window->Show View->Problems 然后就去解决相应的Problems. 注意:与Window->Show View->Error Log 不同.

把 Eclipse 中的工程 Push 到 Github(适用 Windows 平台)

今天发现一小技巧,关于如何把Eclipse的某一个Existing project push 到github服务器. Eclipse 应该是 JavaEE 版本. 在project 右键 team, git 什么的commit一下.目的是生成 local repository. 然后去打开windows版本的github客户端 tools -> options -> scan for repositories. 就找到刚刚生成的repository, 把它 push 到 github 即可.