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

75,608

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

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

Share:
75,608

Related videos on Youtube

Stevoisiak
Author by

Stevoisiak

Updated on September 18, 2022

Comments

  • Stevoisiak
    Stevoisiak over 1 year

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

  • mblakesley
    mblakesley about 4 years
    These methods show different versions even on the same machine. Some say v7.0, some say v1.7...
  • Aulis Ronkainen
    Aulis Ronkainen over 3 years
    You're correct. However, this answer has been posted already by another user.
  • dave_thompson_085
    dave_thompson_085 over 2 years
    @mblakesley: that's not a difference; see stackoverflow.com/questions/2411288/… especially the second-high-voted answer stackoverflow.com/a/2411663/2868801 . For the 'modular' versions j9 up, starting in 2017, they finally dropped the '1.' prefix.