web-dev-qa-db-ja.com

Eclipse-既存のプロジェクトをインポートしますか?

ワークスペースに追加しようとしているプロジェクトがあります。しかし、Eclipseは私が指しているディレクトリで新しいプロジェクトを検出できません。

特定のディレクトリにプロジェクトが含まれていることをEclipseに知らせるにはどうすればよいですか?

私のディレクトリには以下が含まれます:

  • 資産
  • libs
  • 解像度
  • src
  • 置き場
  • gen
  • AndoridManijest.xml
  • proguard.cfg
  • project.properties
17
aryaxt

Import-> Existing Project into Workspaceを実行し、プロジェクトの.classpathファイルと.projectファイルが存在する場所を参照するだけです。

13
FUD

Eclipseの新しいバージョンの場合はFile > Import > General > Existing projects into workspace

8
Nav

このような

   Importing existing projects
    You can use the Import Wizard to  command link import an existing project into workspace.

    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.
1
Joolah

このソリューションはEclipse用です

コマンドラインからビットバケットからリポジトリをクローンしているときに同様の問題があり、ローカルリポジトリにクローンされました。したがって、上記のソリューションは、ファイルがすでにローカルリポジトリにあると言うので機能しませんでした。

ソリューション:

1. Window > Show View > other > Git repositories
2. Right Click on the git repository tab > import projects
3. navigate to the repository you want to put into Eclipse
4. select the third option 'import as general project', if selecting this does not work then view other options and select the option that applies to you
5. finish
0
QQQ

上記のソリューションのようにプロジェクトをインポートできない場合は、インポートするprocjectのような名前のprocjectを持つ新しいプロジェクトを作成する必要があります。インポートプロジェクトをワークステーションに配置することを忘れないでください。

0
mr_sudo