Export Net Beans Projects to Eclipse & Eclipse to Netbeans

Export NetBeans Projects to Eclipse



let’s see what I did to import NetBeans workspace into Eclipse without wasting time
1


1.       There is a dist folder inside NetBeans workspace, containing a .war file. Import this war file into Eclipse. For this;
1.       Open eclips IDE > Go to File Menu => Import => War
2.       Above step will make package structure in Eclipse workspace similar to NetBeans. It’ll also prepare configuration file. Now you need to place source files only. For this
1.       Go to src folder inside NetBeans folder => Copy all contents => Place them to src folder inside NetBeans folder.
2.       Right click on Project name in right side panel of Eclipse IDE => Refresh
Your Eclipse workspace is prepared. If above trick doesn’t work for you refer another way;
2


OVERVIEW OF THE PROCESS
1.       Lets say you already have a NetBeans project created called MyProject and located at <PATH>\MyProject
2.       open NetBeans and change the project settings
3.       create a ZIP file of the <PATH>\MyProject\MyProject.zip
4.       create a new folder <PATH>\NEW (or your choice), this is where we are going to create the Eclipse Project
5.       open Eclipse create a new project and import the ZIP file
6.       create a new folder <PATH>\NEW\MyProject\dist(necessary for NetBeans)
7.       Now you can DECIDE when to work with Eclipse or NetBeans


DETAILED PROCESS
1.       Let’s say you already have a NetBeans project created called MyProject and located at <PATH>\MyProject
2.       open NetBeans
·         open MyProject
·         Right click MyProject and select Clean Project (this deletes the build/classed and dist folders)
·         open the file project.properties located in the folder <PATH>\MyProject\nbproject
·         change the build.dir to bin
·         change the build.classed.dir to ${build.dir}
·         save and close the file
close NetBeans
3.       create a ZIP file of the <PATH>\MyProject\MyProject.zip that will contain this folders:
·         nbproject
·         src
·         Any other folder or file that is located at <PATH>\MyProject
4.       create a new folder <PATH>\NEW (or your choice), this is where we are going to create the Eclipse Project
5.       open Eclipse
·         go to Window, Open Perspective, Java
·         go to File, New, Project, Java Project
·         click NEXT
·         type MyProject
·         select Create project at external location
·         type <PATH>\NEW\MyProject (this folder will be created by ECLIPSE)
·         select Create separate source and output folders
·         click NEXT
·         click FINISH
·         Right click on MyProject (at the Package Explorer)
·         select IMPORT
·         select ZIP file (usually the last option on the list)
·         click NEXT
·         BROWSE and look for the <PATH>\MyProject\MyProject.zip created on STEP 3
·         click FINISH
close Eclipse
6.       create a new folder <PATH>\NEW\MyProject\dist(necessary for NetBeans)
7.       Now you can DECIDE when to work with Eclipse or NetBeans



Importing Eclipse Projects into NetBeans IDE

Contents
Content on this page applies to NetBeans IDE 6.9, 7.0, 7.1, 7.2, 7.3, and 7.4
To complete this tutorial, you need the following software and resources.
Software or ResourceVersion Required
NetBeans IDEversion 6.9, 7.0, 7.1, 7.2, 7.3, or 7.4
Java Development Kit (JDK)version 6 or 7

The Import Eclipse Project Wizard

An enhanced support for importing Eclipse projects is available in the NetBeans IDE. The Import Eclipse Project wizard enables you to use NetBeans to work on Java desktop and web application projects that were created in Eclipse and MyEclipse.
After creating a NetBeans project from an Eclipse project, you can work in the following ways:
  • Use NetBeans on a team project where other developers are using Eclipse.
  • Use NetBeans and Eclipse interchangeably on a project.
  • Try out NetBeans on an existing project that was set up in Eclipse.

How the Import Wizard Works

When you import a project, the IDE analyzes the Eclipse project metadata and then creates a NetBeans project based on that metadata. The project import does not impose changes on the Eclipse project structure, so it does not interfere with the way the project works in Eclipse.
Once you have the project imported, you can use either or both the NetBeans and Eclipse IDEs to edit, build, run, debug, and profile the project. If you make a configuration change in the Eclipse project, you can resynchronize the NetBeans project. This enables you to work on projects in NetBeans even if everybody else on your team is working with Eclipse. The build path that you set in Eclipse remains the master build path for the project.

Importing and Configuring Projects

To import an Eclipse project into the IDE:
  1. Make sure that you have copy of the project that you want to import on your system.
    Typically, this project would already be in an Eclipse workspace on your system.
  2. Choose File > Import Project > Eclipse Project.
  3. In the Workspace Location page of the wizard, select the Import Projects from Workspace radio button and specify the workspace location. Click Next.
    The Workspace Location page of the Import Eclipse Project wizard
  4. In the Projects to Import page, select the projects that you want to import.
  5. Choose one of the following two options for storing the NetBeans project files:
    • Store NetBeans project data inside Eclipse project folders. NetBeans adds folders and files within the top-level folder of the original project.
    • Create imported NetBeans projects in a separate location. NetBeans uses the sources and libraries in the original Eclipse project folder but creates a separate folder to hold NetBeans project metadata and build outputs.
    Note: Typically, it is better to store NetBeans project data inside Eclipse project folders. In most cases, this means that the NetBeans project metadata will refer to sources and libraries with the same paths that are used by the Eclipse metadata. Therefore, checking out the project from a version control system on different machines should result in similar behavior both in NetBeans and Eclipse.
    See NetBeans Project Files below for a list of files and folders that the NetBeans IDE creates.
  6. (Applicable when web applications are being imported only.) Click Next. In the Servers page, register any servers that your projects need with NetBeans IDE.
  7. Click Finish.
After you have completed the wizard, the following dialog boxes might appear:
  • Import Issues. This dialog box provides information about discrepancies between the project structure in Eclipse and in NetBeans and points out actions that you might need to take to correct the discrepancies.
    You can copy the information from this dialog and paste it elsewhere for future reference.
    In most cases, you use the project's Project Properties dialog box to resolve those issues. See Resolving Import Problems for a guide to resolving the most common problems.
    The Import Issues dialog box
  • Resolve Reference Problems. This dialog box alerts you to a specific reference problem with one of your project libraries. You can solve this problem after dismissing this dialog box by right-clicking the project's node and choosing Resolve Reference Problems.
  • Resolve Missing Server. This dialog box alerts you that the project can not find a necessary server. You can solve this problem after dismissing this dialog box by right-clicking the project's node and choosing Resolve Missing Server.
After you have completed the wizard and have closed any of the above informational dialog boxes, nodes for the projects will appear in the Projects window.
The Projects window after a project has been imported.
If there are references in your project metadata to servers or other resources that NetBeans can not resolve, the node for the project will appear in red. You can resolve these references immediately by right-clicking the project node and choosing Resolve Reference Problems or Resolve Missing Server.
For other types of project configuration adjustments, you use the Project Properties dialog box. You open the Project Properties dialog box by right-clicking the project's node and choosing Properties.
For more information on configuring your project, see Configuring the Classpath and Other Project Settings in the Creating, Importing, and Configuring Java Projects guide.

Building and Running a Project

Once you have the project imported into NetBeans, you can build and run the project. All artifacts created from NetBeans build and run commands are created in the build and dist folders. NetBeans does not over-write output created from Eclipse build actions. If the Eclipse project already has build and dist folders, the NetBeans project creates folders called nbbuild and nbdist and uses those for the build outputs.
The following are some of the build and run commands are available from the Run menu:
  • Run Project. Test runs the application in the IDE.
  • Clean and Build Project. Deletes the contents of the build (or nbbuild) and dist (or nbdist) folders and rebuilds all of the project's outputs. Uses the NetBeans build script. Similar to the Clean command in Eclipse.
  • Clean. Deletes the contents of the nbbuild and nbdist folders.
  • Build. Rebuilds the project's outputs. If the Compile on Save feature is enabled, the Build command is disabled. See the Compile on Save section of the Creating, Importing, and Configuring Java Projects guide.
For more information on building and running your application as well as customizing the build process, see Creating, Importing, and Configuring Java Projects.

NetBeans Project Files

After you have imported the project, you will find the following folder and files on your system:
  • build.xml file or nb-build.xml file. The main NetBeans build script for the project. You can customize this script according to the needs of your project. By default, this file is called build.xml. If such a file already exists in the project folder, the script is called nb-build.xml.
  • nbproject folder. Contains most of the NetBeans project metadata, including resources that are called by the main NetBeans build script. If you check this folder and the build.xml file or nb-build.xmlinto your version control system, other users will be able to open the project in NetBeans. This folder also contains the private folder, which contains data specific to your system. This folder should not be checked in to the version control system since its contents will vary between users. See Version Control Considerations below.
  • nbbuild folder. When you build or run your project in NetBeans, the project's sources are compiled into this folder.
  • nbdist folder. When you build your project in NetBeans, the project's distributable outputs are created and placed in this folder. Such outputs might be JAR files and WAR files.

Version Control Considerations

If the project is checked out of a version control system, the build (or nbbuild), dist (or nbdist), and the nbproject/private folders should not be checked into that version control system.
If the project is under the CVS, Subversion, or Mercurial version control systems, the appropriate "ignore" files are created or updated for these directories when the project is imported.
Though nbproject/private should be ignored, nbproject should be checked into the version control system. nbproject contains project metadata that enables others users to open the project in NetBeans without having to import the project first.

Resynchronizing a Project

The project importer features synchronization capabilities. If the classpath in the Eclipse has changed since you initially imported it, you can use the Resynchronize Eclipse Projects feature to update the classpath in the corresponding NetBeans project.
Project resynchronization is one-way from Eclipse projects to NetBeans projects. If you make changes to the project structure in NetBeans, those changes are not propagated to the Eclipse project with the resynchronization feature. If you intend to keep both Eclipse and NetBeans projects, use the Eclipse project as the "master" project.
The IDE also resynchronizes the projects automatically if the changes to the Eclipse configuration are unambiguous and do not require your input. This automatic resynchronization occurs shortly after you open the project. If the resynchronization requires your input, you need to manually resynchronize the project.
To manually resynchronize NetBeans projects with Eclipse projects:
  • Choose File > Import Project > Resynchronize Eclipse Projects.
Notes: When you resynchronize a project, the resynchronization is performed on all projects that you have imported from the workspace.

Resolving Import Problems

When you import a project into NetBeans, there might be some things that can not be automatically resolved in NetBeans IDE. For some of these problems, a menu item, such as Resolve Missing Server Problem, appears in the contextual menu for the project. Other problems can be resolved in the Project Properties dialog box for the imported project in NetBeans IDE.
Here is a list of common import problems and their solutions.
Problem MessageSolution
Resolve Missing Server ProblemRight-click the project node and choose Resolve Missing Server Problem. Then navigate to the file or folder that contains the server.
Resolve Reference ProblemRight-click the project's node and choose Resolve Reference Problem. Then navigate to the file or folder that contains the resource that is referred to from the project.
Eclipse platform for project ProjectName cannot be used. It is a JRE and the NetBeans project requires a JDK. NetBeans will use the default platform.If you would like to change the platform that NetBeans uses for the project, choose Tools > Platforms and specify a different platform.
Eclipse project ProjectName claims to use JDK from the "{1}" directory. But this directory does not exist. NetBeans will use the default platform.If you would like to change the platform that NetBeans uses for the project, choose Tools > Platforms and specify a different platform.
NetBeans does not support source includes/excludes per source root as Eclipse does. They were merged and it is recommended that you double check them in project's properties in Source panel.In NetBeans, includes and excludes are declared in one place for the whole project. To check the includes and excludes in the NetBeans project, right-click the project's node and the Projects window and choose Properties. In the Project Properties dialog box, select the Sources tab and then click the Includes/Excludes button.
Import failed due to .... More details can be found in IDE's log file.You can open the IDE's log file by choosing View > IDE Log.
Unknown project type - it cannot be imported.You can only import the following Eclipse project types: Java Project, Java Project from Existing Ant File, Static Web, Dynamic Web, and JPA Project.

Post a Comment

Thank You

Previous Post Next Post