Skip to content

Instantly share code, notes, and snippets.

@BadUncleX
Last active September 7, 2018 17:22
Show Gist options
  • Save BadUncleX/1c3926a175bb1c71f1caf06ba72c8d15 to your computer and use it in GitHub Desktop.
Save BadUncleX/1c3926a175bb1c71f1caf06ba72c8d15 to your computer and use it in GitHub Desktop.
install uninstall jdk 1.6 1.7 1.8 on Mac

see here:https://www.java.com/en/download/faq/java_6.xml

核心: 要安装1.6的版本必须首先卸载掉所有的新版本.

Where can I get the latest version of Java 6?

We highly recommend downloading and installing the latest Java version. The latest release for Java contains many new features, performance enhancements, and bug fixes to improve the running of Java applets or applications.

Java SE 6 End of Public Updates NoticeOracle no longer posts updates of Java SE 6 to its public download sites. All Java 6 releases up to and including 6u45 have been moved to the Java Archive on the Oracle Technology Network, where they will remain available but not receive further updates. Oracle recommends that users migrate to the latest Java version in order to continue receiving public updates and security enhancements. » Java SE 6 End of Public Updates Notice » Oracle Java SE Commercial Offering Releases

Are you still looking for the latest version of Java 6?If you have already tried the latest version and are facing issues running your Java Applets or applications, let us know the problems you encountered using the latest version. Updates for Java 6 are no longer available to the public. Oracle offers updates to Java 6 only for customers who have purchased Java support or have Oracle products that require Java 6.

Apple Java 6 for Mac OS X

For Java versions 6 and below, Apple supplies their own version of Java. For Mac OS X 10.6 and below, use the Software Update feature (available on the Apple menu) to check that you have the most up-to-date version of Java 6 for your Mac. For issues related to Apple Java 6 on Mac, contact Apple Support. Oracle and Java.com only support Java 7 and later, and only on 64 bit systems.Mac OS X and Apple Java 6 End of LifeApple has posted notice that Mac OS X 10.11 (El Capitan) will be the last OS X release that supports Java 6, and as such, recommends developers whose applications depend on Java 6 to migrate their apps to a newer Java version provided by Oracle. » More info (apple.com)


Java Application DevelopersWhere can I get information about enabling my application for Java 8?If you create or maintain Java applications, information is available at Oracle Technology Network. » JDK 8 Adoption Guide » JDK 8 Compatibility » JDK 8 Troubleshooting Desktop Guide

How do I uninstall Java on my Mac?


This article applies to:

  • **Platform(s): **Mac OS X
  • **Java version(s): **7.0, 8.0

Uninstall Oracle Java using the TerminalNote: To uninstall Java, you must have Administrator privileges and execute the remove command either as root or by using the sudo tool.Remove one directory and one file (a symlink), as follows:Click on the Finder icon located in your dockClick on the Utilities folderDouble-click on the Terminal iconIn the Terminal window Copy and Paste the commands below: sudo rm -fr /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin sudo rm -fr /Library/PreferencePanes/JavaControlPanel.prefPane sudo rm -fr ~/Library/Application\ Support/JavaDo not attempt to uninstall Java by removing the Java tools from /usr/bin. This directory is part of the system software and any changes will be reset by Apple the next time you perform an update of the OS.


Can I restore Apple Java 6 after uninstalling Oracle Java?Yes, see the instructions on the Apple website Restore Apple Java 6. If you have JDK 7 or later versions installed on your system and you want to restore Apple Java 6, then those JDK versions need to be uninstalled first. See the instructions to Uninstall JDK.


MORE TECHNICAL INFORMATION

Uninstall JDKTo uninstall JDK 7 and later versions, you must have Administrator privileges and execute the remove command either as root or by using sudo. See the instructions to Uninstall JDK.

zshrc配置文件的java_home配置

# 设置自带的 jdk1.6
export JAVA_6_HOME="/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/"
# 设置 jdk1.7
export JAVA_7_HOME="/Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/"
# 设置 jdk1.8
export JAVA_8_HOME="/Library/Java/JavaVirtualMachines/jdk1.8.0_161.jdk/Contents/Home/"

export JAVA_9_HOME="/Library/Java/JavaVirtualMachines/jdk-9.0.4.jdk/Contents/Home/"

# 默认 jdk 使用1.6版本
export JAVA_HOME=$JAVA_8_HOME

# alias 命令动态切换 jdk 版本
alias jdk6="export JAVA_HOME=$JAVA_6_HOME"
alias jdk7="export JAVA_HOME=$JAVA_7_HOME"
alias jdk8="export JAVA_HOME=$JAVA_8_HOME"
alias jdk9="export JAVA_HOME=$JAVA_9_HOME"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment