I have a Java program source files, complete with its subdirectories. My problem is, how can I put all of this inside an IDE (ie. Netbeans, Eclipse) , so that I can easily, modify, compile and package it to become a *.jar file.

link|improve this question

1  
you can create a new project and link this folder to that project in eclipse. – sreejith Apr 23 '10 at 4:39
feedback

2 Answers

up vote 7 down vote accepted

Eclipse: File->New->Java Project, then check "Create project from existing source" instead of "Create new project in workspace"

Netbeans has similar way to do it.

link|improve this answer
feedback

If you happen to be using Maven as your build tool there are some nice plugins for creating a project file that you can open in your IDE.

For example:

Eclipse: mvn eclipse:eclipse

Intellij IDA: mvn idea:idea

link|improve this answer
1  
Or you can simply use "import the project from an external model" in IDEA or install m2eclipse in Eclipse and use it to import the project. The path is similar for ant based builds... – Bozhidar Batsov Apr 23 '10 at 5:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.