Java 101: Learn Java from Scratch – History, Installation & First Program

ARUN PALANIVELARUN PALANIVEL
4 min read

Java 101 – Everything You Need to Know: Basics, JDK Installation & First Code

πŸ“Œ 1. What is Java?

Java is a high-level, object-oriented programming language developed by Sun Microsystems (now owned by Oracle). It is widely used for web development, mobile apps (Android), enterprise applications, and competitive programming.

βœ… Key Features of Java:
πŸ”Ή Write Once, Run Anywhere (WORA) – Java code runs on any platform with JVM (Java Virtual Machine).
πŸ”Ή Object-Oriented – Uses classes and objects for structured programming.
πŸ”Ή Secure & Robust – Handles memory management and exception handling efficiently.
πŸ”Ή Multithreaded – Can handle multiple tasks simultaneously for better performance.


πŸ“Œ 2. Why Learn Java?

Java is used in various domains, making it a valuable skill for developers:
βœ… Android Development – Used to build Android apps.
βœ… Backend Development – Used in Spring Boot, Hibernate, and REST APIs.
βœ… Competitive Programming & DSA – Fast execution and rich libraries.
βœ… IoT & Embedded Systems – Used in smart devices and automation.


πŸ“Œ 3. A Brief History of Java

πŸ”Ή 1991: Java was originally called "Oak", created by James Gosling and his team at Sun Microsystems. The name Oak came from an oak tree outside Gosling’s office.

πŸ”Ή 1995: Due to trademark issues, Oak was renamed to "Java", inspired by Java coffee beans from Indonesia. The name was chosen because it sounded dynamic, energetic, and unique.

πŸ”Ή 1996: The first stable version, Java 1.0, was released with the Write Once, Run Anywhere (WORA) philosophy.

πŸ”Ή 2009: Oracle Corporation acquired Sun Microsystems, making Java an Oracle product.

πŸ”Ή Present: Java is continuously updated, with Java 24 being the latest version.


πŸ“Œ 4. How to Install Java (JDK) on Your System

πŸ”Ή Step 1: Download JDK

1️⃣ Go to the official Oracle JDK download page: https://www.oracle.com/java/technologies/javase-downloads.html
2️⃣ Choose the latest Java SE Development Kit (JDK) version.
3️⃣ Download the correct version for your OS (Windows, macOS, or Linux).

πŸ”Ή Step 2: Install JDK

1️⃣ Open the downloaded file and follow the installation steps.
2️⃣ Note the installation path (e.g., C:\Program Files\Java\jdk-XX.X.X).

πŸ”Ή Step 3: Set Up Java Environment Variables (Windows)

1️⃣ Search for "Environment Variables" in the Windows Start menu.
2️⃣ Under System Variables, select Path β†’ Click Edit β†’ Click New.
3️⃣ Add the Java bin path (C:\Program Files\Java\jdk-XX.X.X\bin).
4️⃣ Click OK and restart your PC.

πŸ”Ή Step 4: Verify Installation

Open Command Prompt (Windows) or Terminal (macOS/Linux) and type:

java -version

βœ… If Java is installed correctly, it will show the Java version:

java version "23.0.2" 2025-01-21
Java(TM) SE Runtime Environment (build 23.0.2+7-58)
Java HotSpot(TM) 64-Bit Server VM (build 23.0.2+7-58, mixed mode, sharing)

To make Java development easier, use an Integrated Development Environment (IDE):
βœ… IntelliJ IDEA (Best for beginners)
βœ… Eclipse (Popular for Java development)
βœ… VS Code (With Java extensions – Lightweight alternative)

Download IntelliJ IDEA: https://www.jetbrains.com/idea/download/
Download VS Code: https://code.visualstudio.com/


πŸ“Œ 6. Your First Java Program

Let's write and execute a simple "Hello, World!" program in Java.

πŸ”Ή Step 1: Write the Code

Create a file called HelloWorld.java and add the following code:

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

πŸ”Ή Step 2: Compile the Code

Open Command Prompt or Terminal, navigate to the file location, and type:

javac HelloWorld.java

This compiles the file and creates a HelloWorld.class file.

πŸ”Ή Step 3: Run the Program

Execute the compiled program:

java HelloWorld

βœ… Output:

Hello, Java!

πŸ“Œ 7. Understanding the Code

πŸ”Ή public class HelloWorld {} β†’ Defines a Java class named HelloWorld.
πŸ”Ή public static void main(String[] args) {} β†’ The main method (entry point of Java programs).
πŸ”Ή System.out.println("Hello, Java!"); β†’ Prints output to the console.


πŸ“Œ 8. Common Errors & Fixes

❌ Error: 'javac' is not recognized as an internal or external command
βœ… Fix: Add Java bin path to Environment Variables.

❌ Error: Main method not found in class HelloWorld
βœ… Fix: Ensure the main method is correctly defined:

public static void main(String[] args)

πŸ“Œ 9. Next Steps

🎯 Now that you've written your first Java program, here’s what to learn next:
βœ… Understanding Java Syntax (Classes, Methods, main() method, Print Statements)
βœ… Operators & Control Statements
βœ… Loops, Arrays & Functions

Stay tuned for the next blog: "Understanding Java Syntax & Variables"! πŸš€


πŸ“Œ Summary

πŸ“Œ Java is platform-independent, object-oriented, and widely used.
πŸ“Œ JDK (Java Development Kit) is needed to run Java programs.
πŸ“Œ We wrote and executed our first Hello World Java program.


20
Subscribe to my newsletter

Read articles from ARUN PALANIVEL directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

ARUN PALANIVEL
ARUN PALANIVEL

Learning & Teaching Java β˜• | Software Development Enthusiast πŸ’» | Exploring DSA & Problem Solving πŸš€ | Sharing Knowledge to Grow Together!