tags:

views:

215

answers:

3

Like this:

alt text

the "open project" item's color is grey.

+2  A: 

You need to first create a project using File -> New Project. Then the project you've created must be closed before you can then open it.

SB
+1  A: 

Perhaps you want to Import a Project to Eclipse From an Archive File.

Macarse
yes, I find this link a moment ago, thank you :)
Keating Wang
how in the world did you know he wanted to do that from his question?
SB
@SB: Eclipse has projects. I guessed he was looking for a File => Open and the correct way to do it, is a project import :)
Macarse
+4  A: 

Project > Open Project and Project > Close Project may no be what you think, they apply to projects that are already in the workspace and are closed/open respectively. From the Eclipse documentation:

When a project is closed, it can no longer be changed in the Workbench and its resources no longer appear in the Workbench, but they do still reside on the local file system. Closed projects require less memory. Also, since they are not examined during builds, closing a project can improve build time.

You are probably looking for File > New > Project that would open the following wizard (select the type of project you want to create and follow the steps):

alt text

To import an existing Eclipse project, use File > Import > Existing Project into Workspace.

Pascal Thivent