Java with Eclipse IDE
Starting your Java journey? Here is a simple and clear step-by-step guide to help you get everything ready - no rush, just follow along one step at a time
Step 0: Install JDK (Java Development Kit)
Download JDK from Oracle:
https://www.oracle.com/java/technologies/downloads/#jdk18-windows
This is the core tool you will need to write and run Java programs.
Step 1: Download Eclipse IDE
Download Eclipse ZIP: https://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/2024-06/R/eclipse-java-2024-06-R-win32-x86_64.zip
This is the software you will use to write your Java code comfortably.
Step 2: Extract the ZIP File
Once downloaded, extract the .zip file to any folder of your choice.

Step 3: Launch Eclipse
Open the folder and double-click on eclipse.exe to start the IDE.
Step 4: Create a Workspace
Choose or create a folder where your Java projects will be saved. This will be your workspace.
Step 5: Create a New Project
Click “Create a new Java project”, give it a name like MyFirstJavaProject, and click Finish.
Step 6: Start Coding
You are now ready to write your first Java program. Try creating a class and printing Hello, World! to check everything is working.
Two Minute Drill
- Install JDK: Download and set up Java Development Kit (JDK).
- Set JAVA_HOME: Configure environment variables.
- Install Eclipse: Download, unzip, and launch Eclipse IDE.
- Test Setup: Create & run a "Hello, World!" program.