Open In App

How to Create a Project In NetBeans GUI?

All Java Development in the IDE takes place within Projects, we first need to create a new project within which to store sources and other project files. An IDE project is a group of JAVA Source files plus its associated metadata (data about data), including projectspecific properties files, and many other related files. A Java Application may consist of one or more IDE Projects.

Step 1: Creating a new GUI application Project



Menu Bar

New Project Window

 Step 2: Select the Categories as JAVA and in the Projects Select Java Application.
 Step 3: Then Press the Next Button in the window.
 Step 4: Enter the name of the Project “but keep in mind that while writing the name of the project space is not required. Enter the name without  leaving the space.”

Project Name & File Location

Step 5: Now, the Dialog Box also show where the Project is going to save by the NetBeans if you want to change the Project Location you can set it from that but by Default, all the project will save in the following location of the local computer, as follows:



C:\Users\Administrator\Documents\NetBeansProjects
// As per windows operating system
// Note: Will differ as per OS 

 Step 6: Then Click on the Finish Button in the window.

 New Project window

By now a project is created as one can conceive from the pictorial representation. By following the above mention steps you can Start the New Project in the NetBeans after this you can start the Project in the JAVA Application, JAVA Class & Web Application as per the Project / Customer Requirements.

Article Tags :