Java Lab Manual 01 Java Quick Start Tutorial Netbeans
Java Lab Manual 01 Java Quick Start Tutorial Netbeans
/front/main/participate)
Apache NetBeans
Blog (../../../../../../front/main/blogs) Get Help (../../../../../../front/main/help) Plugins (https://plugins.netbeans.apache.org/)
(../../../../../../index.html)
Download (../../../../../../front/main/download)
Latest release
Apache NetBeans 21
Download (../../../../../../front/main/download/nb21)
In this tutorial, which should take about 10 minutes to complete, you are given a quick
Creating a Java Source File
introduction to the basic Java development workflow in NetBeans IDE.
Adding Code to the Java Source
File
The aim of this tutorial is to get you started with Java development with Maven in NetBeans
IDE. Though not needed to complete this tutorial, to get started understanding and working Running the Application
with the Java language itself, see the Java Tutorials
(https://docs.oracle.com/javase/tutorial/index.html), and to understand Maven, the Apache
Maven Website (https://maven.apache.org).
1. In the IDE, choose File > New Project or click the "New Project" button in the toolbar.
1. In the New Project wizard, select Java Application, as shown in the figure below. Then click Next.
(../../../../_images/kb/docs/java/proj-wizard-
maven2.png)
The first time you create a new Java project, you will be prompted to download and enable support for Java. Follow the prompts and
install as recommended by the wizard.
1. In the Name and Location page of the wizard, type HelloWorldApp in the Project Name field, (as shown in the figure below):
(../../../../_images/kb/docs/java/proj-wizard2-
maven.png)
Click Finish.
maven.png)
In the New Java Class wizard, type Main in the Class Name field, (as shown in the figure below):
(../../../../_images/kb/docs/java/proj-wizard4-
maven.png)
Click Finish.
The Java source file is created and opened.
You should see the following components, (as shown in the figure below):
Projects window: Top left, contains a tree view of the components of the project, including source files, libraries that your
code depends on, and so on.
Source Editor: Central area, contains files, where most of your work will be done, currently with a Java source file called Main
open.
Navigator: Lower left, useful for quickly navigating between elements within the selected class.
(../../../../_images/kb/docs/java/proj-opened-
maven.png)
1. Between the braces, type psvm and press Tab . You should now see public static void main statement.
1. Within the public static void main statement, type sout and press Tab . You should now see a System.out.println
statement.
2. Within the quotation marks, type hello world .
maven.png)
Notice that when you press Ctrl + Space , the editor shows you multiple ways of completing the code at the cursor, as well as
related documentation:
(../../../../_images/kb/docs/java/editor-cc-
maven2.png)
For a full description of editor assistance features, see Code Assistance in the NetBeans IDE Java Editor: A Reference Guide
(../editor-codereference/).
In the Output window (which can be opened from the Window menu), you should see the below.
(../../../../_images/kb/docs/java/run-output-
maven.png)
Congratulations! Your application works.
You can view the build output by opening the Files window (from the Window menu) and expanding the target node.
You now know how to accomplish the most common Java development tasks. To learn the complete Java development workflow,
including testing and debugging, see Developing General Java Applications (../javase-intro/).
(https://www.youtube.com/user/netbeansvideos) (https://netbeans.apache.org/blogs/atom)
(https://tinyurl.com/netbeans-slack-signup/) (https://github.com/apache/netbeans/issues)
(https://www.apache.org/) (https://www.apache.org/events/current-event.html)
event.html) (../../../../../../front/main/participate/#documentation)
Apache, Apache NetBeans, NetBeans, the Apache feather logo and the Apache
NetBeans logo are trademarks of The Apache Software Foundation
(https://www.apache.org).
Oracle and Java are registered trademarks of Oracle and/or its affiliates.
The Apache NetBeans website conforms to the Apache Software Foundation Privacy
Policy (https://privacy.apache.org/policies/privacy-policy-public.html)