Sharing a project between Eclipse and Netbeans

后端 未结 5 552
孤独总比滥情好
孤独总比滥情好 2020-12-20 14:13

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

相关标签:
5条回答
  • 2020-12-20 14:42

    This article, taken from a NetBeans 6.2 version of documentation, explains how you can import an Eclipse project into NetBeans and work with both together. NetBeans will create new project files but will link to the Eclipse source files, allowing sharing between the two. I have not tried this yet myself, but may be going down this path soon. After switching to NetBeans just this week, noticed that a significant feature in Eclipse is not in NetBeans - that of being able to create different run configurations that are not incorporated and stored into the POM. At this point in time, I do not have a solution to the run configuration issue, but if you do, please update the SO question here.

    0 讨论(0)
  • 2020-12-20 14:44

    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.

    0 讨论(0)
  • 2020-12-20 14:45
    • You can import an eclipse project into netbeans,
    • or you can create an eclipse project from existing sources.
    0 讨论(0)
  • 2020-12-20 14:48

    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.

    0 讨论(0)
  • 2020-12-20 14:59

    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)

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