Migrating From NetBeans to Eclipse

后端 未结 6 1736
甜味超标
甜味超标 2020-12-15 17:05

My company wants to migrate to Eclipse, I was wondering what options besides an Ant build are there to move our projects from Netbeans to Eclipse.

6条回答
  •  无人及你
    2020-12-15 17:44

    Tooooo ... oooo .... oooo late to answer but this works

    http://www.coderanch.com/t/458555/vc/Export-Netbeans-Eclipse

    i was looking for an answer my self and saw this question :)

    Quoting:

    Here is a little tutorial on "Importing projects from NetBeans to Eclipse".

    Please try this:

    PART I - NETBEANS

    1. Open NebBeans.
    2. Create a java project named "ToEclipse".
    3. Build this project.

    Then, NetBeans has created several folders. The important folders to us are (in my computer):

    • c:\User\Almir\NetBeans\ToEclipse\dist
    • c:\User\Almir\NetBeans\ToEclipse\src

    PART II - ECLIPSE

    1. Go to Eclipse.
    2. Create a java project in Eclipse named "ToEclipse".

    Then, Eclipse has created several folders. The important folders to us are (in my computer):

    • c:\Users\Almir\Eclipse\ToEclipse\bin
    • c:\Users\Almir\Eclipse\ToEclipse\src

    PART III - WINDOWS EXPLORER

    1. Go to Windows Explorer.
    2. Copy the FILE "ToEclipse.jar" at c:\Users\Almir\Eclipse\ToEclipse\bin folder.
    3. Past it in c:\Users\Almir\Eclipse\ToEclipse\bin
    4. Copy the FOLDER "toeclipse" at c:\User\Almir\NetBeans\ToEclipse\src folder. Past it in b) c:\Users\Almir\Eclipse\ToEclipse\src folder.

    PART IV - ECLIPSE

    1. Go to Eclipse.
    2. Press F5 to refresh the view.
    3. Verify that your project is there (under ToEclipse/src/toeclipse).
    4. Say "Oh! Yes! It works!".
    5. Run the project.
    6. Return to 3) how many times you want!

    I hope that helps you!

    Kind regards, Almir Campos São Paulo, Brazil.

提交回复
热议问题