Ubuntu: change the path from OpenJDK 6 to Oracle JDK 7

前端之家收集整理的这篇文章主要介绍了Ubuntu: change the path from OpenJDK 6 to Oracle JDK 7前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Run

sudo update-java-alternatives --list

to list off all the Java installations on a machine by name and directory,and then run

sudo update-java-alternatives --set [JDK/JRE name e.g. java-8-oracle]

to choose which JRE/JDK to use.

If you want to use different JDKs/JREs for each Java task,you can run update-alternatives to configure one java executable at a time; you can run

sudo update-alternatives --config java[Tab]

to see the Java commands that can be configured (java,javac,javah,javaws,etc). And then

sudo update-alternatives --config [javac|java|javadoc|etc.]

will associate that Java task/command to a particular JDK/JRE.

You may also need to set JAVA_HOME for some applications: from this answer you can use

export JAVA_HOME=$(readlink -f /usr/bin/java | sed "s:bin/java::")

for JREs,or

export JAVA_HOME=$(readlink -f /usr/bin/java | sed "s:jre/bin/java::")

for JDKs.

原文链接:https://www.f2er.com/ubuntu/352718.html

猜你在找的Ubuntu相关文章