Java Installation Steps in Tamil for Windows – With Demo Test

This complete Java installation steps in Tamil for Windows 10/11 walks you through every step. Learn how to download, install, and configure Java easily to start coding.

SOFTWARE INSTALLATIONNEWLY ADDED

GPW Team

2/3/2025

Java Installation Steps in Tamil for Windows – With Demo Test

Hello, future Java experts! 👋 If you're new to programming, Java is a wonderful place to begin. Before we can start coding, we need to install Java on your Windows computer step by step, in a way that's easy to understand and follow.

👨‍💻 Why Install Java?

Java is a powerful and widely-used programming language. Whether you want to develop Android apps, web applications, or games, Java is an excellent choice! Let's make sure to set it up correctly.

📥 Step 1: Download Java JDK:
  1. 👉 Go to the official Oracle website: https://www.oracle.com/java/technologies/javase-downloads.html

  2. 👉 Look for the Java SE Development Kit (JDK) – It's best to download the latest version available! 

  3. 👉 Select the Windows x64 Installer (.exe file) and click Download 

  4. 👉 Accept the License Agreement to start downloading!

🛠️ Step 2: Install Java JDK:

 Once the .exe file is downloaded, double-click it to start the installer.

  • ✔️ Click Next and choose the installation location (the default location is fine, but you can change it if you prefer)

  • ✔️ Click Install and wait for the installation to complete! ✨

  • ✔️ Once finished, click Close! Java is now installed on your computer! 🎉

🏗️ Step 3: Set Up Environment Variables (Very important! 🛑):

After Java is installed, we need to configure Windows to recognize it.

  • Open the Start Menu and search for Environment Variable.

  • Click on Edit the system environment variables → Environment Variables

  • Under System Variables, find Path, click Edit, then New, and enter your Java installation path: "C:\Program Files\Java\jdk-XX.X.X\bin"

  • Click OK and Apply Changes ✅

🧪 Step 4: Verify Java Installation:

Let's ensure Java is installed correctly in our system.

🔸 Open Command Prompt (CMD)

🔸 Type: "java -version"

🔸 If you see something like "Java version 17.0.1", congratulations! 🎉 Java is installed correctly!

🔸 Now, type: "javac -version"

🔸 If you also see a version number here, your Java Compiler (Javac) is ready to use! ✅

🎬 Step 5: Run Your First Java Program (Demo Test):

Let's create a simple Java program and run it to test everything!

👉 Open Notepad and type the following code:

"""

class HelloTamil {

public static void main(String args[]) {

System.out.println("Vanakkam! Java is installed successfully! ");

}

}

""""

👉 Save the file as "HelloTamil.java" (Ensure you select "All Files" as type)

👉 Open Command Prompt and navigate to the folder where you saved the file: "cd path\to\your\file"

👉 Compile the code by typing: "javac HelloTamil.java"

👉 Run the program by typing: "java HelloTamil"

👉 If you see "Vanakkam! Java is installed successfully!" on your screen, then congratulations! You have successfully installed and tested Java! 🍻

🎯 Conclusion:

That's all there is to it! You’ve successfully installed Java on Windows and even ran your first program. You're now ready to start learning more about Java development! 💻✨

 🔥Next Steps? Begin by learning Java syntax, practicing coding, and working on exciting projects! 🚀

💬 If you have any questions, feel free to ask! 🗨️ Or explore more free projects on Genie Projects World.

🔔 Follow us for more tutorials and projects! Happy Coding! 😊

Hashtags:

#Java #JavaInstallation #TamilTech #Programming #CodeNewbie #LearnJava #StudentDevelopers #GenieProjectsWorld #GPW