Skip to main content

Java Hello World

Before you write a single line of code, there are a couple of things you'll want to have set up. Nothing complicated — just the basics.

What You'll Need

  • Java Development Kit (JDK) — this is the core software that lets you write and run Java programs. You can grab it from Oracle's website.
  • A text editor or IDE — technically, you could write Java in Notepad, but an IDE like IntelliJ IDEA or Eclipse makes life a lot easier with things like auto-complete, error highlighting, and built-in tools for compiling and running your code.

Once those are installed, you're ready to go. Let's write your very first Java program: the classic "Hello World."

Setting Up Your File

Open your IDE or text editor and create a new file with a .java extension. For this walkthrough, we'll call it HelloWorld.java.

Writing the Code

Here's all it takes to print "Hello World" to the screen:

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

That's the whole program. Now let's slow down and go through it piece by piece so it actually makes sense — not just something you copy and paste.

Breaking Down the Code

The Class Declaration

public class HelloWorld {

Every Java program lives inside at least one class — there's no way around it. Here, HelloWorld is the name of our class, which you can think of as a blueprint for creating objects. The public keyword is an access modifier, and it basically controls who's allowed to see and use this class.

The Main Method

public static void main(String[] args) {

This line matters a lot — it's the entry point of your program, meaning it's the first thing that runs when your code executes. Let's unpack each part:

  • public — again, an access modifier, making this method reachable from anywhere.
  • static — this means the method belongs to the class itself, not to any specific object. That's why you can run it without first creating a HelloWorld object.
  • void — tells Java this method doesn't hand back any value when it's done.
  • String[] args — an array of strings that lets your program accept input from the command line. You won't need it for this example, but it's there for when you do.

Printing the Message

System.out.println("Hello World");

This is the line that actually does something visible. Here's what's going on under the hood:

  • System — a built-in class that gives you access to system-level resources.
  • out — a member of System that's connected to your console output.
  • println — a method that prints whatever you pass it, then moves to a new line afterward.

Running Your Program

Writing the code is only half the story — now you need to compile and run it.

Step 1: Compile the Code

Save your file, then open a terminal (or command prompt on Windows) and navigate to the folder containing HelloWorld.java. Run this command:

javac HelloWorld.java

This takes your human-readable Java code and turns it into bytecode — a format the Java Virtual Machine (JVM) can actually run. If nothing shows up as an error, you're in good shape. You should now see a new file called HelloWorld.class sitting in the same folder.

Step 2: Run the Program

Now, execute it with:

java HelloWorld

If everything went smoothly, your terminal should display:

Hello World

And that's it — you've officially written, compiled, and run your first Java program. It might look tiny, but every Java application you'll ever build, no matter how complex, follows this same basic pattern: write the code, compile it, run it.

Popular posts from this blog

How to Check if Someone is Connected to Your Machine in Linux

Picture this: you glance at your system monitor and notice your CPU is humming along even though you're not running anything demanding. Or maybe your internet feels sluggish for no obvious reason. A small, uneasy thought creeps in — is someone else on my machine right now? For Linux users, this isn't something you have to wonder about. Linux ships with a powerful set of built-in tools that let you see exactly who's connected, who's logged in, and what your network is doing at any given moment. You don't need to be a security expert to use them — you just need to know where to look. This guide walks you through the practical, no-nonsense steps to check for unauthorized connections on your Linux system, with real commands you can run right now. Why Monitoring Network Connections Matters Every device on a network — including your own Linux machine — communicates using an IP address. When another device or user connects to your system, that connection shows up as a trac...

How to Set Up a Linux Web Server and Host an HTML Page Easily

Setting up a web server on Linux means spending a fair amount of time in the terminal — Linux leans heavily on the command line rather than clicking through menus, so you'll be typing out instructions more often than not.  If you're new to this, it can feel a little intimidating at first, but the good news is you don't need to become a Linux wizard overnight. A handful of core commands will get you surprisingly far. A few you'll lean on constantly: cd — move between directories ls — see what's in the current directory mkdir — create a new folder nano or vim — edit files right there in the terminal sudo — run something with administrator privileges Get comfortable with these and you'll be able to navigate around, tweak configuration files, and install software without much trouble. You don't need to memorize everything — you just need to be confident enough to follow along with clear instructions, which is exactly what this guide aims to give you....

Linux Network Troubleshooting

If you've spent any time as a sysadmin — or honestly, just as someone who's had to fix their own home network at 11pm — you know that connectivity issues are one of the most common headaches out there. The good news is that a handful of core tools and a methodical approach can take you from "why isn't this working" to a root cause pretty quickly.  This guide walks through the essentials: configuring interfaces, managing routes, and diagnosing problems when things go sideways. Configuring Network Interfaces Your network interfaces are the actual bridge between your machine and the outside world, so getting them configured correctly is step one for any kind of reliable connectivity. Doing It Manually ifconfig is the old-school, tried-and-true tool for this on Unix-like systems. To see everything currently configured, run: ifconfig -a If you need to manually set up a specific interface — assigning an IP, a netmask, and bringing it online — it looks like this: ifconf...