Home>Article>Java> How to install jdk in win10 environment

How to install jdk in win10 environment

王林
王林 Original
2020-05-06 11:13:25 3041browse

How to install jdk in win10 environment

1. Download jdk from the official website

How to install jdk in win10 environment

2. Install jdk

How to install jdk in win10 environment

(Video tutorial recommendation:java video)

3. Set environment variables

Right-click My Computer on the desktop→Properties→Advanced System Settings→Advanced Options →Environment variables→Create 3 new variables in user variables:

Variable name: CLASS_PATH

Variable value: .;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools .jar

Variable name: JAVA_HOME

Variable value: C:\Program Files\Java\jdk1.8.0_91 (Do not enter the brackets, enter the installation directory address of your JDK here)

Variable name: PATH

Variable value: .;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin

How to install jdk in win10 environment

##4. Test Whether the installation is successful

Open the command prompt, enter JAVAC, and press Enter.

If the following picture appears, it means the installation is successful.

How to install jdk in win10 environment

Recommended tutorial:

java entry program

The above is the detailed content of How to install jdk in win10 environment. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn