我正在尝试导入我和我的同事一直在做的一个项目。在我选择“导入”,然后选择“导入现有项目”,然后单击存档文件,然后单击下一步,这个错误就出现了:

中已经存在某些项目,因此无法导入 工作空间


当前回答

这通常发生在您物理地更改项目目录而没有首先在Eclipse中删除时。 您可以在以下视图下查看和删除这些隐藏项目。

Window -> Show View -> Other -> General -> Navigator

然后只是简单地继续导入现有项目的过程。

其他回答

这对我很管用。

文件>新建> Android项目>从现有资源创建项目

Location =要导入的项目的位置。

您将得到一条警告:“此目录中已存在一个Eclipse项目。 考虑使用File > Import > Existing Project代替。”但是你可以点击“Next”,项目就会被导入。

在我的例子中,我从工作空间复制了一个项目(比如“Project1”),并将其粘贴到相同的工作空间。之后,我修改了粘贴项目的名称(说到'Project2')。我在仓库里看不到它。

主要原因是新项目的.project文件仍然有: <name>Project1</name>而不是<name>Project2</name>。

所以,我做了以下事情来解决这个问题:

在工作区外剪切并粘贴Project2 将.project文件更改为<name>Project2</name> 尝试再次导入Project2。

这对我很管用。

我刚接触Eclipse和Android开发,这让我困扰了很长一段时间。以下是我做错的几件事,也许将来会对别人有所帮助:

I was downloading code examples and assuming project name would be the same as the folder name and was looking for that folder name in the project explorer, not finding it, re-importing it, then getting the error message it already existed in the workspace. Yeah. Not proud of that. Didn't click on 'Copy projects into Workspace' and then searched in vain through the workspace when it didn't appear in the project explorer BECAUSE The 'Add project to working sets' option in the Import Projects tab isn't working as far as I can tell, so was not appearing in the project explorer for the active working set (refresh made no difference). Adding project to the working set had to be done after successfully importing it.

在您的工作空间文件夹中查看一下,您可能有一个旧项目,其名称与您正在导入的项目相同(即使它没有在eclipse中显示)。

当您在Eclipse上删除一个项目时,如果您不勾选对话框上的复选框,它就会将其从视图中删除,而不会删除工作区目录上的文件夹。

出现此问题是因为您在其他项目文件夹中有相同的项目。因为在eclipse中我们有很多项目文件夹,所以如果你在一个文件夹中有一个项目,你想把它导入到另一个项目文件夹中,那么这个问题就会发生。 所以首先从其他文件夹中删除项目,然后导入到当前的项目文件夹中。