Skip to content

Instantly share code, notes, and snippets.

@kentliau
Last active August 29, 2015 14:23
Show Gist options
  • Save kentliau/41a051ce5fe2ccb30d07 to your computer and use it in GitHub Desktop.
Save kentliau/41a051ce5fe2ccb30d07 to your computer and use it in GitHub Desktop.
Multiple Java version switching
# List all available Java version and currect set Java version
/usr/libexec/java_home -verbose
# Switch to the Java version you want temporarily
export JAVA_HOME="`/usr/libexec/java_home -v '1.6*'`"
# Run your desire Java application (.jar) in your desire version
java -jar application.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment