intellij idea 安装教程_2020教程

idea (4) 2024-06-08 09:23

Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
intellij idea 安装教程_2020教程,希望能够帮助你!!!。

IDEA安装教程目录

一、JDK的彻底卸载(选做)

二、JDK的安装

三、IDEA的安装

四、IDEA的扩展

五、代码测试

六、Error:Cannot determine path to 'tools.jar' library for 17 (D:\jdk-17.0.1)报错的解决方案

七、说明


写在前面:JDK版本要与IDEA版本相匹配,不然会报错嗷(即:第六节所示)!因为我之前有JDK,所以为了更好的演示,我先把JDK17卸载了。如果你有JDK请查看你的JDK版本后进行第二步(本篇文章IDEA版本选取的是2020.1(扩展教程不适用于2022及以后的版本),所以JDK要求在JDK14及以下,如果是高版本JDK,请下载高版本的IDEA 如:IDEA 2021.3),如果你没有JDK直接进行第二步,如果你想要彻底卸载JDK请参考第一步。IDEA分为旗舰版(ULtimate)和社区版(Community),Community为免费版本,ULtimate版可以通过教育认证的方式免费使用。本篇文章所安装的是ULtimate版,本文仅供学习使用。

IDEA的官网为:IntelliJ IDEA – the Leading Java and Kotlin IDE (jetbrains.com)

一、JDK的彻底卸载(选做)

Step one:在控制面板找到Java(TM) SE Development Kit 17.0.1(64-bit),右键->卸载

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第1张

Step two :键盘按Win+R,输入"regedit"打开注册表编辑器,

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第2张

找到如下目录:

HKEY_LOCAL_MACHINE/SOFTWARE/JavaSoft 

如图:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第3张

将JavaSoft文件夹及其子目录全部删除。

Step three:删除系统环境变量
右键计算机→属性→高级系统设置→高级→环境变量
intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第4张
1>找到系统变量→删除 JAVA_HOME 变量 和 CLASSPATH 变量,即:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第5张
2>编辑系统 Path 变量删除里面的 %JAVA_HOME%\bin; 和 %JAVA_HOME%\jre\bin;即:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第6张

Step four:将C盘中Windows\System32和Windows\SysWOW64文件夹下的java.exe, javaw.exe 和 javaws.exe文件删除(如果未找到请忽略

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第7张intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第8张

Step five:在cmd中,输入Java,如图,即卸载成功:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第9张

二、JDK的安装

1)JDK17的下载(IDEA2020请下载jdk11):

官网(这个无需注册,可直接下载最新版本):Java Downloads | Oracle

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第10张安装,双击下载的exe:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第11张

自定义安装路径:intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第12张

等待自动安装完成:intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第13张

配置系统环境变量:详见JDK11的部分,这里只列了一个图,其他的与JDK11配置相同)

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第14张检查安装是否成功及版本信息:intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第15张

2)JDK11的下载: 

渠道一:官网下载(要注册的,所以可以选择渠道二)官网链接:Java Downloads | Oracle

JDK11直通地址:Java Downloads | Oracle

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第16张

点击Download  jdk-11.0.13_windows-x64_bin.exe,同意协议登录即可下载:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第17张

渠道二:这里提供一个华为jdk源镜像地址:Index of java-local/jdk

jdk11.0.1下载地址:Index of java-local/jdk/11.0.1+13

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第18张渠道三:

公众号:蓝多多的小仓库 发送:jdk 即可提取。

3)安装:双击,选择安装路径

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第19张

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第20张

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第21张 4)配置环境变量

Step one:右键计算机→属性→高级系统设置→高级→环境变量

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第22张

Step two:新建->变量名"JAVA_HOME",变量值"D:\jdk-11.01"(这里应是自己JDK的安装路径)

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第23张

Step three:新建->变量名"CLASSPATH",变量值为:(注意:加粗部分都要复制,别复制少了,前面俩标点的意义为表示当前路径)

".;%JAVA_HOME%\lib;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar"即复制:

.;%JAVA_HOME%\lib;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第24张

Step four:编辑系统环境变量->双击"Path",点击"新建",输入"%JAVA_HOME%\bin",点击"确定",再点击"新建",输入"%JAVA_HOME%\jre\bin",单击确定。

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第25张

附:环境变量相关解释(来源:JDK的最详细的安装教程 - 小玲子丫 - 博客园):

变量名:JAVA_HOME
变量值:D:\jdk-11.01
用途:定义一个变量,供其他地方使用
变量名:Path
变量值:%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;
用途:让系统在任何路径下都可以识别java、javac、javap等命令
变量名:CLASSPATH
变量值:.;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar
用途:告诉jvm要使用或执行的class放在什么路径上,便于JVM加载class文件,.;表示当前路径,tools.jar和dt.jar为类库路径

5)查看是否安装成功及安装版本

Win+R在cmd中输入:

java -version

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第26张

三、IDEA的安装

Step one:下载

IDEA下载官网:http:// https://www.jetbrains.com/idea/

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第27张

由于新版本可能不稳定,这里选择其他旧版本(Other versions):

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第28张 这里我选择的是Windows 2020.1版

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第29张

点击即可下载:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第30张

当然,我下载好的在网盘里也有(建议你去官网下载,速度更快)

公众号:蓝多多的小仓库 发送:IDEA2020 即可提取。

Step two:安装

双击下载的exe安装程序,选择安装路径

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第31张

 勾选64位(根据自己电脑选择,不要选错,否则之后无法正常启动)

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第32张

Next>intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第33张

Next>勾选Run IntelliJ IDEA

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第34张Finish,同意协议

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第35张 启动界面:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第36张

这里点击左下角跳过即可:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第37张

选择Evaluate for free,试用30天,点击Evaluate(别着急,后面有扩展教程)intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第38张

开始创建工程intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第39张

 如果你没有进行第二步下载JDK,那么这里是<No SDK>的,你可以选择Download JDK(这里默认下载最新版,所以如果你IDEA版本不够新,就会报第六节的错误)intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第40张

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第41张

这里我做了第二步所以,直接下拉选择自己下载的JDK即可: 

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第42张

创建工程(可跳过)intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第43张

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第44张

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第45张

到此,IDEA的安装及创建JAVA工程就完成了,如果你只是短期使用,即可跳转到第五步。 

四、IDEA的扩展

1、下载jetbrains-agent:

        支持正版软件,如果您是学生您可以选择用学校的邮箱进行教育认证的方式(我就采用的教育认证,很方便),也可以安装Community版本(足够你使用了)。

教育认证的方法如下:IDEA教育认证方法及Certificate used to sign the license is not signedby JetBrains root certificate的解决方案-CSDN博客

如果您需要本文的jetbrains-agent下载链接可以从 公众号:蓝多多的小仓库 回复关键词:jetbrains-agent 获取。 (如果您是高版本建议您自己在网上去找资源,很多滴, 我这个适用于2020版本嗷,之前存的,有点久远了)

2、将jetbrains-agent压缩包移入当前界面

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第46张

3、在弹窗中选择Restart,重启 

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第47张

4、选择为IDEA安装:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第48张

5、选择是(Y)

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第49张

6、查看信息:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第50张

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第51张

取消自动更新:File->Settings->Updates->取消勾选

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第52张

五、代码测试

1、新建一个Java Class,类名为hello:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第53张

2、测试代码:

public class hello { public static void main(String[] args) { System.out.println("hello world!"); } }

3、测试结果:

intellij idea 安装教程_2020教程_https://bianchenghao6.com/blog_idea_第54张

六、Error:Cannot determine path to 'tools.jar' library for 17 (D:\jdk-17.0.1)报错的解决方案

报错原因:JDK与 IntelliJ IDEA的版本不匹配

方案一:降低 JDK 的版本,使当前 IntelliJ IDEA 能够识别(2020.1的IDEA 需要JDK 14及以下)

方案二:提高 IntelliJ IDEA 的版本(安装JDK17的话需要2021版的IDEA)

七、说明

1、本篇文档的教程已经过博主本人亲自尝试,如有疑问可以留言或私信博主。

2、如果您觉得此篇文章对您有帮助,麻烦您一键三连嗷!我们一起学习!一起进步!

今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

下一篇

已是最新文章

发表回复