Environment for Java development

table of Contents

1>Download and install JDK

2>Download and install IntelliJ IDEA Ultimate


1>Download and install JDK

Download address (to register an account, it is recommended to download from Baidu network disk):

https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html

JDK installation path:

D:\Environment\Java\jdk1.8

JRE installation path:

D:\Environment\Java\jre1.8

Configure the JAVA_HOME variable:

My Computer-->Properties-->Advanced System Settings-->Advanced-->Environment Variables-->System Variables-->New

  • Variable name: JAVA_HOME

  • Variable value: D:\Environment\Java\jdk1.8

Configure the Path variable:

My Computer-->Properties-->Advanced System Settings-->Advanced-->Environment Variables-->System Variables-->New

  • %JAVA_HOME%\bin

  • %JAVA_HOME%\jre\bin

Test whether the JDK is installed successfully:

java -version

2>Download and install IntelliJ IDEA Ultimate

download link:

https://www.jetbrains.com/zh-cn/idea/download/#section=windows

installation manual:

Choose configuration:

IDEA crack method:

CLICK HERE!

Project folder path (usually placed in the user directory of the C drive by default, it is recommended to place it in a non-system disk):

D:\IdeaProjects

Guess you like

Origin blog.csdn.net/Kannyi/article/details/113996311