Java Setup on windows

Imran Khan
2 min readAug 17, 2022

--

Setup Java on windows

We can verify either java is installed or not on system using java -version command. It will show below message if java is installed.

If Java do not install on system. Follow below steps to set up java in local:

  1. Download java exe file from Oracle URL and install the same.
  2. Go to control panel -> Advanced system settings or directly search for environment variables.

3. Click on Environment Variables.

4. Inside System variables select path properties and click on Edit.

5. Click on the New button and add the java bin path C:\Program Files\Java\jdk1.8.0_241\bin. Click on OK.

6. Open new command prompt and run java -version command to verify the java got installed or not.

I hope you found out this article interesting and informative. Please share it with your friends to spread the knowledge.

You can follow me for upcoming blogs follow.
Thank you!

--

--