JDK download, install and configure the environment

JDK: Java Development Kit
JRE: Java Runtime Enviroment
JVM: JAVA Virtual Machine (JAVA virtual machine) write once, run anywhere
JDK includes JRE
1. Baidu search JDK8 (used by enterprises) and
Insert picture description here
click to enter
2. Select the appropriate version to download and
Insert picture description here
Insert picture description here
require registration One Oracle account can be downloaded
Insert picture description here
Download and open
Insert picture description here

3. Install JDK,
Insert picture description here
change the installation path and remember the path name.
Insert picture description here
Insert picture description here
Installation is complete
. 4. Configure environment variables
1)
My Computer -> Right-click -> Properties -> Advanced System Settings -> Environment Variables
Create a new JAVA_HOME
Insert picture description here
Insert picture description here
variable value in the system variable as the JDK path
2)
Configure the path variable
Insert picture description here
Click New and enter %JAVA_HOME%\bin and %JAVA_HOME%\jre\bin
Insert picture description here

5. Check whether the installation is successful.
Open cmd and enter JAVA -version, which means
Insert picture description here
the installation is successful
. 6. Write the first java code
1) Create a
Insert picture description here
new folder Create a new text file and change the extension to .java ( first letter capitalized )
Insert picture description here
2) Use notepad ++ open and write down the life of a java code ( the java case-sensitive ) ( file name and class name to phase the same)
Insert picture description here
3) locate the file location and enter cmd + space + Enter the path in front of
Insert picture description here
Insert picture description here
4) compile javac java file
Insert picture description here
will Generate a class file
Insert picture description here
5) Run the class file
Insert picture description here

Guess you like

Origin blog.csdn.net/qq_51224492/article/details/110500496