I want to install a specific jdk (the latest for example). For this, I went to jdk download homepage: http://java.sun.com/javase/downloads/index.jsp I look for a mac version but i'm a bit surprise to have only downloadable version for linux, window and solaris..

Here the message for Mac: "Apple Computer supplies their own version of Java. Use the Software Update feature (available on the Apple menu) to check that you have the most up-to-date version of Java for your Mac."

OK BUT... when I update java with mac I have a jre and not a jdk ...

I don't understand why it doesn't exist a jdk version easy downloadable/installable (like a jar to unzip?) for Mac ....

link|improve this question

0% accept rate
22  
Famous question... you should accept an answer. ;) – gary comtois Dec 3 '10 at 11:19
feedback

11 Answers

Which version of the Mac OS do you have?

Apple ships a full JDK, this is what I get on a default install of Snow Leopard:

$ javac -version
javac 1.6.0_15
$ which javac
/usr/bin/javac

$ ls -la /System/Library/Frameworks/JavaVM.framework/Versions/
lrwxr-xr-x   1 root  wheel    5 Sep 24 20:12 1.3 -> 1.3.1
drwxr-xr-x   3 root  wheel  102 Jul 21 07:35 1.3.1
lrwxr-xr-x   1 root  wheel   10 Sep 24 20:12 1.5 -> CurrentJDK
lrwxr-xr-x   1 root  wheel   10 Sep 24 20:12 1.5.0 -> CurrentJDK
lrwxr-xr-x   1 root  wheel    5 Sep 24 20:12 1.6 -> 1.6.0
drwxr-xr-x   7 root  wheel  238 Sep 24 20:12 1.6.0
drwxr-xr-x   8 root  wheel  272 Sep 24 20:12 A
lrwxr-xr-x   1 root  wheel    1 Sep 24 20:12 Current -> A
lrwxr-xr-x   1 root  wheel    3 Sep 24 20:12 CurrentJDK -> 1.6

You may get other versions from the Developer Tools, but basically the default install will give you a working JDK. You do not even have to set any paths or stuff like that.

link|improve this answer
3  
So, when an application or plug-in install states that the JAVA_HOME variable point you my JDK, what export statement do I need to put in my .bash_profile? – mobibob Dec 3 '10 at 18:18
See my answer below. (I tried putting the answer here, but all the line breaks get stripped out and it's harder to read.) – Mark Tye Jul 26 '11 at 19:58
Not really. It lacks the source and documentation so it's not so good as the JDK used for your IDE of choice. – Dan Howard May 11 at 13:07
feedback

As the message says, you have to go to Apple, not Sun, for Java on the Mac. As far as I know, Apple JDK 6 is installed by default on Mac OS X 10.6 (Snow Leopard). Maybe you need to install the developer tools from your Mac OS X installation DVD (the dev tools are an optional install from the OS DVD).

See: http://developer.apple.com/java/

link|improve this answer
feedback

In a comment under @Thilo's answer, @mobibob asked how to set JAVA_HOME in your .bash_profile on a Mac. Answer:

export JAVA_HOME=`/usr/libexec/java_home` 

This will dynamically assign to JAVA_HOME the location of the first JDK listed in the "General" tab of "Java Preferences" utility.

See Apple Technical Q&A 1170: http://developer.apple.com/library/mac/#qa/qa1170/_index.html

link|improve this answer
feedback

Thanks everyone for your responses.

The explaination is that jdk is a bit specific and does not contains the lib tools.jar. For my development i need this lib and mac's jdk doesn't provide it:

(cf. http://developer.apple.com/mac/library/documentation/Java/Conceptual/Java14Development/02-JavaDevTools/JavaDevTools.html)

"tools.jar does not exist. Classes usually located here are instead included in classes.jar. Scripts that rely on the existence of tools.jar need to be rewritten accordingly."

sucks !

Thanks for all your responses !

link|improve this answer
1  
Ahhhhhhh!!! As you discovered, tools.jar is already included in the runtime for Mac OS X. So looking for tools.jar isn't the right approach on Mac to know if it's a JDK or JRE :) – Pascal Thivent Oct 16 '09 at 13:19
Thanks for your response, you are right. My need was to get the tools.jar lib for a specific project and for me it was an approach to recognize a jdk ;) – ajeanson Oct 16 '09 at 16:01
feedback

As of Snow Leopard, you can run Java 6 in 32-bit mode on either 32-bit or 64-bit intel processor equipped Macs.

If you cannot upgrade to Snow Leopard, Soy Latte is a pre-compiled version of Java 6 for Intel 32-bit.

link|improve this answer
feedback

Compiling with -source 1.5 -target 1.5 (in a JDK 6 environment) will honor only language elements that were in 1.5 and prior. Great. But there were no language changes in 6 anyway. Problem with this approach (on Mac with 1.6) is that using classes that came AFTER 1.5 will still compile because they exist in the rt.jar. So one could run in a 1.5 env and get a class not found exception with no prior warning when compiling. I found this out the hard way with javax.swing.event.RowSorterEvent/Listener. Both entered "Since 1.6" but are not caught with -source 1.5

link|improve this answer
feedback

For people using any LION OS X 10.7.X

They uploaded Java SE 6 version 1.6.0_26 available here

http://support.apple.com/kb/dl1421

link|improve this answer
1  
Aaand, they replaced it with _29, which has the MS SQL bug. Great. :( – Carighan Maconar Nov 21 '11 at 10:12
feedback

As a rule you cannot install other versions of Java on a Mac than those provided by Apple through Software Update. If you need Java 6 you must have a 64-bit Intel computer. You should always have Java 5 and 1.4 and perhaps 1.3 installed if you have at least OS X 10.4.

If you have VERY much elbow grease and is willing to work with beta software you can install the OpenJDK under OS X, but I don't think you want to go there.

link|improve this answer
OpenJDK is the future: code.google.com/p/openjdk-osx-build – Neeme Praks Jan 13 '11 at 13:44
@Neeme, things have changed a bit since I wrote this answer... – Thorbjørn Ravn Andersen Jan 13 '11 at 14:06
I know, that's why I added that comment. Maybe should have written a bit longer comment to go with the link :-) – Neeme Praks Jan 13 '11 at 14:42
feedback

I think this other response could help

How to get JDK 1.5 on Mac OSX

It basically says that if you need to compile or execute a java app with an older version of the jdk (for example 1.4 or 1.5) yo can do it using the 1.6 because it is backwards compatible. To do it so you will need to add the parameter -source 1.5 and/or -target 1.5 in the javac options or in your IDE.

link|improve this answer
feedback

"As far as I know, Apple JDK 6 is installed by default on Mac OS X 10.6 (Snow Leopard)."

  • crap. Download Linux version, x64 or i586, in a .bin format. Extract it. If Mac OS doesn't allow that, extract it on another Linux-like machine, and copy folder into /java/tools/jdk-1.6.25 (let's be consistent)

    Redefine JAVA_HOME=/java/tools/jdk-1..6.25
    Export PATH=$JAVA_HOME/bin:$PATH
    

Mac OS version of Java is provided with some native support for Mac OS (I expect SWING applications and applets run faster, but I can't believe Mac wasted money on that crap)

link|improve this answer
3  
Why should the Linux version of the JDK run on Mac OS X? Those two OS don't have a lot in common (except that they both are POSIX-y)! It won't work! – Joachim Sauer Jun 6 '11 at 7:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.