下载
到官方选择你想要的版本:
https://www.oracle.com/cn/java/technologies/downloads/
将下载好的包,解压之后放置到:
/Library/Java/JavaVirtualMachines/
目录下。
配置环境
编辑~/.base_profile
或者~/.zshrc
,将配置写入:
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.0.17.jdk/Contents/Home
export PATH=$JAVA_HOME/bin:$PATH
生效:
source ~/.base_profile
source ~/.zshrc
.bash_profile 和 .zshrc 区别
.bash_profile
中修改环境变量只对当前窗口有效,而且需要source ~/.bash_profile
才能使用。.zshrc
则相当于 windows 的开机启动的环境变量
你也可以在.zshrc
中加一行source .bash_profile
解决需要 source 才能使用的问题。