Open project in Eclipse

I am completely unfamiliar with Eclipse / Java / Android programming, so this may seem like a dumb question, but I can't open the project I worked on last week ... this is a HelloWorld project.

I am very familiar with Visual Studio, so I was looking for something like a project file / solution or a way to open a directory in Eclipse, but I was out of luck and completely lost.

Any help is appreciated!

+4
source share
3 answers

Can you try File-> Import and then select "Existing projects in Workspace" and then select the directory with the HelloWorld project?

+8
source

Looks like I checked it to not show closed projects.

+1
source

Eclipse will look in the .project file in the project directory and see the original name of the project, which may be the same as for another project. This can happen if you create a new project using the old code.

+1
source

Source: https://habr.com/ru/post/1299184/


All Articles