Where is Java Installed on Mac OS X?

I just downloaded Java 7u17 on Mac OS 10.7.5 from here and then successfully installed it. In order to do some JNI programming, I need to know where Java installed on my Mac.

I thought that inside the /Library/Java/JavaVirtualMachines/ folder, there would be a folder called 1.7.0.jdk or something, but then I found that the folder is empty. This was confirmed by running ls /Library/Java/JavaVirtualMachines/ in the Terminal. I've tried searching for it to find out if it was installed somewhere else, but that doesn't seem to be turning anything up.

Could someone please tell me where Java is installed on my Mac?


Use /usr/libexec/java_home -v 1.7 command on a terminal shell to figure out where is your java 1.7 home directory

If you just want to find out the home directory of your most recent version of java, omit the version. eg /usr/libexec/java_home -v


Turns out that I actually had the Java 7 JRE installed, not the JDK. The correct download link is here. After installing it, jdk1.7.0jdk appears in the JavaVirtualMachines directory.


您可以在终端中使用echo $(/usr/libexec/java_home)命令来了解Java安装的路径。

链接地址: http://www.djcxy.com/p/84548.html

上一篇: 如何将std :: string转换为const char *或char *?

下一篇: Java在Mac OS X上安装在哪里?