Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Import an IntelliJ IDEA project into NetBeans?

Tags:

How can I import an IntelliJ IDEA project into Netbeans?

I know I can just use IntelliJ but I prefer Netbeans...

With this particular project I can't just copy the source directory into a Netbeans project... That doesn't work?

How may I use this IntelliJ IDEA project within Netbeans?

like image 501
José Avatar asked Jul 25 '11 17:07

José


1 Answers

The nbproject is a required folder by NetBeans, where it keeps its project settings. The only necessary project build files needed are the project.xml and project.properties.

In project.xml, line 5 is changed to reflect the accurate name of the user's project. Also for IntelliJ, nbintellij.iml is the required file.

So for a IntelliJ project, if you create the nbproject folder with the required files (project.xml and project.properties), you'll be able to open the folder in NetBeans


You can use the following tool I've created to convert an IntelliJ project to NetBeans, and also convert a NetBeans project to IntelliJ. Please make sure you have python installed.

https://github.com/devanshkaloti/IDEProjectConverter-Java

like image 117
Devansh Kaloti Avatar answered Sep 28 '22 08:09

Devansh Kaloti