How to Install JDK 14.0.2 on Windows 10 x64

Опубликовано: 04 Октябрь 2024
на канале: Ken
917
4

In this tutorial, I will show you how to install Java Development Kit (JDK) 14.0.2 on Windows 10 x64.

You should download the following:

JDK 14.0.2 is available from https://www.oracle.com/java/technolog...

The Installed directories are as following:

C:\Program Files\Java\jdk-14.0.2

Setting Environment Variables

JAVA_HOME="C:\Program Files\Java\jdk-14.0.2"

JAVA_HOME tells your OS where there Java installation directory lives.

PATH="%JAVA_HOME%\bin"

PATH specifies where the Java executable directory resides.

Javac -version

The output should display a message indicating the Java 14 version of the language and runtime.