Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to share the same *.java files between Netbeans and Eclipse?

share|improve this question

4 Answers

up vote 7 down vote accepted
share|improve this answer
12  
I took the liberty to add some links illustrating your answer (+1 btw) – VonC Jan 19 '11 at 14:56

Sharing the Java source files is not the problem - just put them into some source control system, and then import them in both IDEs. Usually the configuration, especially the build process, is the main problem.

In practice, the solution is likely that you maintain separate project configuration files for both IDEs, but use a common build script (e.g. ant) that is supported by both. The project configuration allows you to use IDE-specific features, while the build script makes sure that both environments produce the same output.

share|improve this answer

Of course. eclipse supports linked source folders. The sources files don't have to be located in an eclipse project folder.

Inside an eclipse java project, select New -> Folder, then select "Advanced" and check "Link to alternate location" (eclipse 3.6, may be slightly different on other eclipse versions). "Browse" to choose the source folder from the netbeans project, press Finish.

Now you have linked (standard) folder to the Java files inside the netbeans project and modifying those files will modify them at the remote location.

Finally - right-click on this linked folder and choose Build Path -> Use as source folder.

(I leave the other way round to the netbeans experts)

share|improve this answer

In the ideal case you have your code stored in a version controlled repository (SVN, CVS, etc.). Then it is not as big of a factor whether you are using Eclipse or Netbeans.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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