bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Java/Java Tutorial
Java•Java Tutorial

Java Getting Started

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Java Getting Started?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

public ___ Main {
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Some PCs might have Java already installed.
However, if you want to run Java on your own computer, follow the instructions below.
Java Getting Started

Runnable example

public class Main {
  public static void main(String[] args) {
    System.out.println("Hello World");
  }
}

This editor will be used in the entire tutorial to demonstrate the different aspects of Java.

Java Install

However, if you want to run Java on your own computer, follow the instructions below.

Some PCs might have Java already installed.

To check if you have Java installed on a Windows PC, search in the start bar for Java or type the following in Command Prompt (cmd.exe):

C:\Users\
Your Name
>java -version

If Java is installed, you will see something like this (depending on version):

If you do not have Java installed on your computer, you can download it at oracle.com .

Note

In this tutorial, we will write Java code in a text editor. However, it is possible to write Java in an Integrated Development Environment, such as IntelliJ IDEA, Netbeans or Eclipse, which are particularly useful when managing larger collections of Java files.

Java Quickstart

In Java, every application begins with a class name, and that class must match the filename.

Let's create our first Java file, called Main.java , which can be done in any text editor (like Notepad).

The file should contain a "Hello World" message, which is written with the following code:

Runnable example

public class Main {
  public static void main(String[] args) {
    System.out.println("Hello World");
  }
}

Don't worry if you don't understand the code above - we will discuss it in detail in later chapters. For now, focus on how to run the code above.

Save the code in Notepad as "Main.java". Open Command Prompt (cmd.exe), navigate to the directory where you saved your file, and type "javac Main.java":

C:\Users\
Your Name
>javac Main.java

This will compile your code. If there are no errors in the code, the command prompt will take you to the next line. Now, type "java Main" to run the file:

C:\Users\
Your Name
>java Main

The output should read

Hello World

Congratulations! You have written and executed your first Java program.

Previous

Java Introduction

Next

Java Syntax