you might need to add path in environment variables which you can find in Control Panel
open the Jdk where you installed and add until /bin in the path in environment variables.
Add until /bin in path variable in System Variables which is residing in Environment Variables.
Then do
java -version
which might show up.
If still problem persists, try restarting your pc and see.
Answer from ganga on Stack Overflowyou might need to add path in environment variables which you can find in Control Panel
open the Jdk where you installed and add until /bin in the path in environment variables.
Add until /bin in path variable in System Variables which is residing in Environment Variables.
Then do
java -version
which might show up.
If still problem persists, try restarting your pc and see.
You need to update your Windows path to include your %JAVA_HOME%\bin directory. %JAVA_HOME% is the directory that you installed Java into and is also an environment variable that you need to configure for command line execution of your applications. You can edit both of these in the Windows control panel and you should restart.
When you run java -version you will see the internal version number. This is explained here: https://en.wikipedia.org/wiki/Java_version_history.
Basically, you can ignore the 1. when reading version number. The _xxx is a reference to the most recent patch or build release.
Videos
You can check your version of Java with any of the following methods.
Java Control Panel (Windows)
- Open the Start Menu and select Control Panel.
- From the Control Panel, select Programs -> Java to open the Java Control Panel.

- Select About to view your current version of Java.

Command Line (Windows)
- Press ⊞ Win+R and type cmd to open the Command Prompt.

- Type
java -versionand press Enter

Control Panel (Windows)
Note: This method may give inaccurate results if Java's PATH has not been updated.
- Open the Start Menu and select Control Panel.
- From the Control Panel, select Programs -> Programs and Features.
- Scroll down the list of programs until you find the most recently installed version of Java

Terminal (MacOS)
- In the Finder, search for Terminal and launch Terminal.app

- Type
java -versionand press Enter

Sources
- Tech FAQ - How to Check the Java Version
- Columbia - How to check what Java version you have
- Open CMD (In Windows click Start then type cmd, Command Prompt or PowerShell) and execute the following commands.
- For multiple java installations:
wmic product where "name like 'Java%'" get name, version - For default java installation:
java -version