How to open an existing project in Eclipse?

后端 未结 13 1332
轮回少年
轮回少年 2021-02-06 23:20

I have just created several project using Eclipse. Now restart Eclipse and want to see one of the projects. How can I do it?

I have tried File -> Import -> General -> Ex

相关标签:
13条回答
  • 2021-02-06 23:50
    From the main menu bar, select command link File > Import.... The Import wizard opens.
    Select General > Existing Project into Workspace and click Next.
    Choose either Select root directory or Select archive file and click the associated Browse to locate the directory or file containing the projects.
    Under Projects select the project or projects which you would like to import.
    Click Finish to start the import.
    
    0 讨论(0)
  • 2021-02-06 23:50

    If you are trying to import non maven project into eclipse follow the below steps, it worked for me.

    first clone project into your machine and follow the below steps to import in eclipse.

    Project Explorer -> import -> Git -> Projects from git -> Existing Local repository -> Add -> select project root directory -> (check box) import as general project -> next -> finish

    Thanks.

    0 讨论(0)
  • 2021-02-06 23:51

    Maybe you have closed the project and configured the project explorer view to filter closed projects.

    In that case, have a look at Filters in the Project Explorer view. Make sure that closed projects are disabled in the "Filters" view.

    0 讨论(0)
  • 2021-02-06 23:51

    Use shortcut Alt+Shift+W or navigate to Windows->Show View->Project Explorer

    0 讨论(0)
  • 2021-02-06 23:53

    I also have just faced with this problem that how to open existing file. And none of answers was helpful. That's why I tried by myself.

    Direction: File -> Open file -> Workspace (with you had chosen first in creating your project) -> Package (which you already created your project in) -> src (source file) -> Created package ->

    And now your searching project's nodepad format. I hope it would be helpful. If any mistake here, sorry beforehand.

    0 讨论(0)
  • 2021-02-06 23:55

    If it's a maven project, go to file>import>maven project >existing maven project, then browse for the folder that contains the project, select folder then click finish. That worked for me

    0 讨论(0)
提交回复
热议问题