ยฉ 2026 Genie Projects World. All Rights Reserved.
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.

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.
ย
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.
๐ Go to the official Oracle website: https://www.oracle.com/java/technologies/javase-downloads.html
๐ Look for the Java SE Development Kit (JDK) โ It’s best to download the latest version available!
๐ Select the Windows x64 Installer (.exe file) and click Download
๐ Accept the License Agreement to start downloading!
ย
ย 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! ๐
ย
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 โ
ย
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! โ
ย
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! ๐ป
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! ๐
Get step-by-step guidance on how to set up and install Java locally, with our easy-to-follow YouTube video tutorial.
Genie Projects World helps students explore ready-to-run academic projects with full source code and tutorials.
Proudly made in ๐ฎ๐ณ with โค๏ธ for Students.
Educational use only โ Licensing info available in Terms