当前位置:   article > 正文

brew java 切换_如何设置Homebrew安装的Java路径?

homebrew 装的jdk目录如何选中

Java 9 is installed in my MacBook (OS X 10.11 El Capitan). As I needed Java 8, I've installed it using Homebrew.

$ brew cask install java8

However, the Java version is still 9 in the terminal.

$ java -version

java version "9"

Java(TM) SE Runtime Environment (build 9+181)

Java HotSpot(TM) 64-Bit Server VM (build 9+181, mixed mode)

The install location of the current Java seems to be in /System/Library/Frameworks/.../Commands

$ ls -la /usr/bin/java

lrwxr-xr-x 1 root wheel 74 Sep 23 2017 /usr/bin/java -> /System/Library/Frameworks/JavaVM.framework/Versions/Current/Commands/java

Homebrew seems to have installed Java 8 in

/Library/Java/JavaVirtualMachines/jdk1.8.0_162.jdk/Contents/Home/bin/

Of course I could just prepend the above path to the PATH environment variable in ~/.profile, but I wanted to know whether there is a more robust way of setting the path for the older Java version.

解决方案

I use the method suggested by Maarten Mulders.

I added the following to my bash profile (the file .bash_profile in my home directory).

alias j9="export JAVA_HOME=`/usr/libexec/java_home -v 9`; java -version"

alias j8="export JAVA_HOME=`/usr/libexec/java_home -v 1.8`; java -version"

alias j7="export JAVA_HOME=`/usr/libexec/java_home -v 1.7`; java -version"

When I want to change to a Java version, I simply execute j7 in the terminal.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/693795
推荐阅读
相关标签
  

闽ICP备14008679号