Frequently Asked Question

Wo liegt die Java Installation auf dem Mac
Last Updated 4 years ago

  1. run

    which java
  2. if that gives you something like /usr/bin/java, which is a symbolic link to the real location, run

    ls -l `which java`
    On my system, this outputs

    /usr/bin/java -> /Library/Java/JavaVirtualMachines/jdk1.7.0_25.jdk/Contents/Home/bin/java
    and therefrom you can read the Java home directory;

Please Wait!

Please wait... it will take a second!