How do I check what version of Java I have installed?

I want to check what version of Java is installed on my PC before installing the latest Java update. How can I do this?


Solution 1:

You can check your version of Java with any of the following methods.


Java Control Panel (Windows)

  1. Open the Start Menu and select Control Panel.
  2. From the Control Panel, select Programs -> Java to open the Java Control Panel.

Control Panel -> Programs -> Java

  1. Select About to view your current version of Java.

Java version from Java Control Panel


Command Line (Windows)

  1. Press ⊞ Win+R and type cmd to open the Command Prompt.

Opening CMD with Run tool

  1. Type java -version and press Enter

Java version from command line


Control Panel (Windows)

Note: This method may give inaccurate results if Java's PATH has not been updated.

  1. Open the Start Menu and select Control Panel.
  2. From the Control Panel, select Programs -> Programs and Features.
  3. Scroll down the list of programs until you find the most recently installed version of Java

Java version from Windows Control Panel


Terminal (MacOS)

  1. In the Finder, search for Terminal and launch Terminal.app

Searching for Terminal.app in Finder

  1. Type java -version and press Enter

Java version in MacOS terminal


Sources

  • Tech FAQ - How to Check the Java Version
  • Columbia - How to check what Java version you have

Solution 2:

The methods below will help you to check the Java version in Linux:

  • ps -ef|grep -i JAVA
  • java -version
  • which java

Solution 3:

In windows open command prompt using cmd

Then, type the command java -version

Then, click enter. You will see your java version