惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
B
Blog
F
Fortinet All Blogs
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
A
About on SuperTechFans
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
B
Blog RSS Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your First Java Application — Running Code End to End
Md Jamilur Rahman · 2026-06-17 · via DEV Community

Md Jamilur Rahman

You've installed Java. You've written your first "Hello World" class. Now comes the part that actually matters: turning that file into a running program. This is the full walkthrough — from a blank text file to a terminal output — so you know exactly what happens at every step.

Why Does This Matter?

Most tutorials skip the "how do I actually run this?" part. They show you the code and assume you'll figure out the rest. But understanding the end-to-end flow — writing, compiling, and executing — gives you a mental model that pays off for years. You'll know where errors come from, how to fix them, and how Java really works under the hood.

What You'll Need

  • A text editor (VS Code, Notepad++, or even Notepad)
  • Java Development Kit (JDK) installed (version 8 or later)
  • A terminal or command prompt

If you haven't installed the JDK yet, check out the first article in this series: How to Download and Install Java JDK.

Step 1: Write the Code

Open your text editor and create a new file called HelloWorld.java. The filename must match the class name exactly — that's not a suggestion, it's a rule.

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

A few things to note:

  • public class HelloWorld — This defines a class named HelloWorld. In Java, everything lives inside a class.
  • public static void main(String[] args) — This is the entry point. When you run a Java application, the JVM looks for this specific method.
  • System.out.println(...) — This prints a line to the terminal.

Save the file. Make sure it's HelloWorld.java with a capital H and W.

Step 2: Open a Terminal

Navigate to the folder where you saved HelloWorld.java. On most systems:

  • Windows: Open Command Prompt, type cd C:\path\to\your\folder
  • Mac/Linux: Open Terminal, type cd /path/to/your/folder

Verify the file is there by listing the directory contents:

ls    # Mac/Linux
dir   # Windows

You should see HelloWorld.java in the list.

Step 3: Compile the Code

Java is a compiled language. That means you can't run .java files directly — you need to turn them into bytecode first. The javac compiler does this.

javac HelloWorld.java

If everything is correct, you won't see any output. That's actually good news — it means the compilation succeeded. Check the directory again, and you'll see a new file: HelloWorld.class.

That .class file contains the bytecode the JVM can execute. You don't need to read it, but it's good to know it exists.

Common Errors at This Stage

  • "javac: command not found" — Your JDK isn't installed or the PATH isn't set up correctly.
  • "class HelloWorld is public, should be declared in a file named HelloWorld.java" — Your filename doesn't match the class name.
  • "cannot find symbol" — You have a typo in your code. Check spelling and capitalization.

Step 4: Run the Program

Now that you have the compiled bytecode, run it with the java command:

java HelloWorld

Notice you don't type the .class extension. The JVM looks for a class with that name in the current directory (or wherever the classpath points).

You should see:

Hello from Java!

That's it. You just ran your first Java application end to end.

What Happened Behind the Scenes?

Here's the full chain:

  1. You wrote source code in a .java file.
  2. javac compiled it into bytecode in a .class file.
  3. java launched the JVM, which loaded your class and executed the main method.
  4. System.out.println sent text to your terminal.

This three-step process — write, compile, run — is fundamental to Java. Every Java application follows this pattern, whether it's a simple script or a massive enterprise system.

Making It More Interesting

Let's modify the program to do something slightly more dynamic:

public class Greeter {
    public static void main(String[] args) {
        String name = args.length > 0 ? args[0] : "Developer";
        System.out.println("Welcome, " + name + "!");
    }
}

Save this as Greeter.java, compile it, and run it:

javac Greeter.java
java Greeter

Output:

Welcome, Developer!

Now try passing a name:

java Greeter Jamilur

Output:

Welcome, Jamilur!

You've just used command-line arguments — a common pattern in real-world Java applications.

The Anatomy of a Java Program

Let's break down the structure one more time:

  • Class declaration: public class ClassName — defines the blueprint.
  • Main method: public static void main(String[] args) — the entry point.
  • Statements: Lines ending with ; that do something.
  • Strings: Text enclosed in "double quotes".
  • System.out.println: The standard way to print output.

Every Java application you write will follow this skeleton. The details change, but the structure stays the same.

Key Takeaways

  • Java source code lives in .java files and must match the public class name.
  • Use javac ClassName.java to compile code into bytecode (.class files).
  • Use java ClassName to run the compiled bytecode.
  • The main method is where execution starts — without it, nothing runs.
  • Command-line arguments let you pass data into your program at runtime.

What's Next?

Now that you can write, compile, and run Java programs, the natural next step is learning how the Java launcher works under the hood — classpaths, modules, and JVM flags. That's where things get interesting, and it's covered in the next article: How Java Launcher Works.


Based on dev.java/learn — Running Your First Java Application