How to Install JDK 11.0.6 on Windows 10 x64

preview_player
Показать описание
This video shows you how to install Java SE Development Kit (JDK) 11.0.6 on Windows 10 x64.
Java SE 11 is a Long-Term-Support (LTS) release and will receive extended support until September 2026.

Setting Environment Variables

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

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 11 version of the language and runtime.
Рекомендации по теме
Комментарии
Автор

I used the same steps and installed JDK 12. I went to cmd and typed in the last command it said javac 12 as the installed version. Can I proceed with the Netbeans installation now?

adityasubbaraman