1.打开终端
2. 如果不存在可以使用touch .bash_profile创建一个新文件
3. 复制一下内容,惟一要更改的是版本号
open -e .bash_profile
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_301.jdk/Contents/Home
PATH=$JAVA_HOME/bin:$PATH:.
CLASSPATH=$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dt.jar:.
export JAVA_HOME
export PATH
export CLASSPATH
4.最后关闭窗口,终端会自动保存
5.source .bash_profile
标签:profile,JAVA,PATH,mac,export,M2,HOME,bash From: https://www.cnblogs.com/guanchaoguo/p/17341485.html