0% found this document useful (0 votes)
45 views9 pages

Java Lab Manual 01 Java Quick Start Tutorial Netbeans

Uploaded by

fahim faisal
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
45 views9 pages

Java Lab Manual 01 Java Quick Start Tutorial Netbeans

Uploaded by

fahim faisal
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 9

Search the docs Community (../../../../../../front/main/community) Participate (../../../../../..

/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)

Java Quick Start Tutorial


 Last reviewed on 2019-04-06

Welcome to Apache NetBeans IDE! Setting Up the Project

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).

Setting Up the Project


Take the steps below to set up a new Java project.

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.

The project is created and opened.

Creating a Java Source File


Right-click the package name and choose New | Java Class, (as shown in the figure below):
(../../../../_images/kb/docs/java/proj-wizard3-

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)

Adding Code to the Java Source File


A skeleton main class has been created for you. Let’s add some basic content to produce a 'hello world' message.

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 .

You should now see the following:


(../../../../_images/kb/docs/java/file-opened-

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/).

Running the Application


Make sure to save the Java source file, right-click the project and choose Run or choose Run Project under the Run menu. Click
Select Main Class.

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.facebook.com/NetBeans)  (https://twitter.com/netbeans)  (https://github.com/apache/netbeans)

 (https://www.youtube.com/user/netbeansvideos)  (https://netbeans.apache.org/blogs/atom)

 (https://tinyurl.com/netbeans-slack-signup/)  (https://github.com/apache/netbeans/issues)

 See this page in GitHub. (https://github.com/apache/netbeans-antora-


tutorials/edit/main/modules/ROOT/pages/kb/docs/java/quickstart.adoc)

(https://www.apache.org/) (https://www.apache.org/events/current-event.html)

ABOUT COMMUNITY PARTICIPATE GET HELP DOWNLOAD


(../../../../../../FRONT/MAIN/ABOUT)
(../../../../../../FRONT/MAIN/COMMUNITY)
(../../../../../../FRONT/MAIN/PARTICIPATE)
(../../../../../../FRONT/MAIN/HELP)
(../../../../../../FRONT/MAIN/DOWNLOAD)
Who's Who Mailing lists Submitting Pull Documentation Releases
(../../../../../../front/main/community/who)
(../../../../../../front/main/community/mailing-
Requests (../../../../../../front/main/help/#documentation)
(../../../../../../front/main/download)
Thanks lists) (../../../../../../front/main/participate/submit-
Wiki Plugins
(https://www.apache.org/foundation/thanks.html) pr) (../../../../../../wiki/main/wiki)(https://plugins.netbeans.apache.org/)
Becoming a committer
Sponsorship (../../../../../../front/main/community/committer)
Reporting Issues Community Support Building from source
(https://www.apache.org/foundation/sponsorship.html)
NetBeans Events (../../../../../../front/main/participate/report-
(../../../../../../front/main/help/#support)
(../../../../../../front/main/download/#_daily_builds_an
issue)
Security (../../../../../../front/main/community/events) Commercial Support Previous releases
(https://www.apache.org/security/) Improving the (../../../../../../front/main/help/commercial-
(../../../../../../front/main/download/#_older_releases
Apache Events
documentation
(https://www.apache.org/events/current- support)

event.html) (../../../../../../front/main/participate/#documentation)

Copyright © 2017-2024 The Apache Software Foundation (https://www.apache.org).

Licensed under the Apache license (https://www.apache.org/licenses/), version 2.0

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)

You might also like