How can I run Java Development on win10 system computers ?, Win10java
Install Java environment variables on Win10, which is suitable for all Windows systems
Java testing in Windows 10 Professional Edition
1. Install JDK, download it from the official Oracle JDK website, or search for JDK to go to the link. After the download is complete, install.
Then the download starts.
2. Install JDK
After configuring environment variables and environment variables, We can compile and run java programs in the command line, eclipse, and other development tools !!
1. Right-click my computer and click Properties.
2. In the displayed dialog box, select Advanced System settings and select environment variables.
Create a new variable named "classpath" in the user variable, and the variable value is ".; % JAVA_HOME % \ lib; % JAVA_HOME % \ lib \ tools. jar "(note that the content in" ") can be copied directly.
Create a variable named "JAVA_HOME" and set the variable value to the directory where jdk was installed. For example, set the variable to "D: \ Software \ Dev \ Java".
Add JAVA_HOME for the path variable
Final results
Open cmd and try to run java and javac commands.
If the above information appears on CMD, the java configuration is successful. We can develop java programs.