Home > Enterprise >  How to open downloaded Java project in NetBeans
How to open downloaded Java project in NetBeans

Time:08-12

I have download a Java web project from the Internet and now I want to do some changes in it. It is not getting opened in NetBeans. Can anyone help me?

This is the folder structure of the project:

enter image description here

CodePudding user response:

You have to put the downloaded file in the net-beans project folder which you will find in documents. follow this youtube video link

or you can also use the import zip in Netbeasns

CodePudding user response:

Based on the folders/files .settings, .classpath and .project this looks like to be an eclipse project - not like a NetBeans project.

If you still want to use NetBeans File > Import Project > Eclipse Project ... should be the way to open it in NetBeans.

  • Related