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

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)
π 5. Install an IDE (Optional but Recommended)
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.
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!