I recently purchased a new laptop and made my old one into a Linux box, running Ubuntu. I started to download the tools that I need, and I'm getting my Java development environment set up now. I have a choice between the Sun Java 6 JDK and the OpenJDK.

What advantages does one have over the other? Can I run both side by side?

link|improve this question

1  
I'm curious if there are licensing differences? – Michael Easter Dec 29 '09 at 22:31
12  
OpenJDK fonts are horrific. – Dave Jarvis Dec 29 '09 at 22:37
3  
This is an important question. But, I'm not sure if the answers are up to date. – reprogrammer Nov 25 '11 at 22:02
feedback

14 Answers

up vote 34 down vote accepted

That really depends on the exact moment that you need a JDK. Both are currently actively maintained. Both have their own set of bugs and fixes. If you encounter some JDK bug which is already fixed in the one, but not in the other yet, then it's obvious that the first one would have your preference.

You can run them side by side, but that would not make much sense, unless you intend to develop with/for a specific JDK.

link|improve this answer
This is what I have done - installed the Sun JDK. However, if someone presents compelling reasons as to why I should use the OpenJDK, I might switch and change accepted answers. – Thomas Owens Dec 29 '09 at 22:25
15  
OpenJDK is something like 99% identical to Sun Java 1.6 (I think its more actually). Really, you can't compare GCJ and OpenJDK. – Pascal Thivent Dec 29 '09 at 22:40
2  
6-open is actually a backport of an early build of JDK7. Some libraries had to be replaced due to license issues, so it is, I believe, somewhat less than 99% identical. (GCJ and CLASSPATH are quite different.) – Tom Hawtin - tackline Dec 29 '09 at 23:08
11  
OpenJDK is not the same as the GNU JDK/Classpath. OpenJDK is not third-party, it is backed by Sun. Sun open-sourced a lot of the Java libraries, but couldn't release all of the code due licensing issues. OpenJDK is currently trying to replace the proprietary, privately-licensed parts of the Sun JDK with open source code. Sun's JDK still has the proprietary parts and so it may perform better in certain areas. – Matt H Dec 30 '09 at 0:01
1  
I believe Ubuntu did at one time ship with GNU Classpath, because I remember replacing it with Sun's JDK due to performance, especially when running Eclipse. – Matt H Dec 30 '09 at 0:18
show 10 more comments
feedback

What advantages does one have over the other?

OpenJDK works rather well, is very stable and is the default VM on many GNU/Linux distros (because the code is under GPL I guess). In my opinion there aren't much differences from a technical (~99% of their code is shared1) and from an end user point of view but, if you don't mind using licensed software, I'd still go for Sun JDK. It's not that OpenJDK is not stable (IcedTea is the JVM of RHEL and RedHat is supporting it) but you might face little more bugs with OpenJDK than with Sun JDK (as the former is moving faster). Some packages will require OpenJDK though (even if Sun JDK is installed, I don't know, this must be a bug). If you want to play with Java 7, OpenJDK is nice. About Java 7, note that JDK7 and OpenJDK7 will have (nearly) identical code base.

See Sun’s JDK7, OpenJDK & IcedTea: Disambiguation for more details. There are actually plenty of other interesting thread over the Internet, for example this one (read all pages). Googling on IcedTea should bring very interesting results too.

Can I run both side by side?

Yes, you can and you can tell the system which one to use by default (for the Java software).

To get a list of the installed JDK

$ sudo update-java-alternatives -l 

To set a new as default one (at the system level)

$ sudo update-java-alternatives -s <jname> 

I have both of them installed to do some testing from time to time and use java-6-sun as default.


1 As underlined by Tom Hawtin's comment to BalusC 's answer, this might be a bit less. According to Joseph Darcy's OpenJDK 6 Genealogy, many files are likely to have identical contents (pretty vague...) and my understanding is that the convergence might be bigger with OpenJDK 7 and Java 7. But this is another story.

link|improve this answer
feedback

OpenJDK will give you new features faster, Sun JDK should give you more stability.

                                               - Jarrod Roberson
link|improve this answer
39  
Citation needed. – Dave Jarvis Dec 29 '09 at 22:38
1  
Sun JDK doesn't change fast and often, thus it is a more stable release. See the accepted answer for the exact same argument. – Jarrod Roberson Dec 17 '10 at 18:16
1  
Which basically means that you quoted a part of the accepted answer. Try upvoting next time – Pablo Fernandez May 4 '11 at 0:37
11  
@Pablo I answered exactly 1 MINUTE BEFORE the accepted answer, which means you didn't look at the answer times. Try reading for comprehension next time. I also updated my answer with a citation in it! :-) – Jarrod Roberson May 4 '11 at 3:27
6  
+1 for the citation thing :) – Pablo Fernandez May 4 '11 at 15:13
feedback

If it is just a private project it does not matter really, I guess.

But if you develop for a public/commercial project ask the operations what the official supported environment is. Even if the environments (devel vs. production) are 99% identical you should always use the official supported and tested version.

In a real case the used jre vendor was not communicated correctly (ibm vs. sun). We developed/tested our software with sun. One day on production a jre-bug popped up, which never happened on development environment, because different jre-versions were used. aargh!

link|improve this answer
feedback

With openjdk, you have the sound mixer working : i.e you won't have error like "the current audio device is currently in use" : with SunJdk, if your java program tries to play a sound while another program is already playing, it won't work, which is lame :/

link|improve this answer
got a bit more info about that?? – Egwor Dec 28 '11 at 20:18
feedback

The problem now is that with the recent suit by oracle over google's usage of java in its android operating system, is it even safe to use sun-java anymore? Wouldn't OpenJDK be a safer option should one want to develop java programs?

link|improve this answer
2  
What does one have to do with the other? The Google suit is because (simplified version) Google is using the Java name on a product that's not Java . OpenJDK has no such concerns. – Marc Paradise Sep 25 '10 at 4:10
feedback

One big difference is that the documentation is different. I don't know if Sun released the docs in a license that is compatible with OpenJDK, but they are using (from my experience) the GNU classpath documentation, which is nowhere near as good.

Sun has great documentation, and you can still use their docs if you want to use OpenJDK, but that could cause confusion if OpenJDK has implemented it differently.

link|improve this answer
1  
Why would OpenJDK use GNU Classpath documentation? GNU Classpath is totally different library, not used in OpenJDK at all. – Peter Štibraný Feb 10 '11 at 12:30
feedback

Basic approach to the problem should consider - what would be the path going forward.

The SunJDK is going to be more-and-more proprietary code going forward.

And OpenJDK makes a lot more sense - to be true to the Java spirit that Sun Microsystems [not Oracle] had espoused right from the beginning

Besides with OpenJDK you are assured of portability - because of known standardised API's

With SunJDK - no one knows where its headed.

Just my two cents...

link|improve this answer
"Just my two cents..." I demand a refund. Have you actually used the JRE of the Open JDK? It is rubbish, or at least it was last year when I was trying to test Java apps. in it. Has it improved significantly since then? – Andrew Thompson Jul 20 '11 at 17:35
1  
Yup, in fact oracle jdk 7 is based on openjdk 7... so that kind of seals the deal for me! – alexhairyman Aug 17 '11 at 1:26
feedback

I found recently that there are differences in PrintWriter implementation when used with multithreading: try creating a PrintWriter object and use it in different threads, I was using format and checkError methods, PrintWriter methods are threadsafe AFAIK (on an invididual call basis); Sun JDK appeared to be correct in implementation in the sense that I saw the effects by way of mingled output (multiple calls were made to above methods to produce output, only individual calls are threadsafe unless the full loop producing output is synchronized explicitly). Open JDK however had no issues - in my tests, the threads had their outputs cleanly separated, so it would appear to protect in case of 'goofy' code it appears.

Just one example. This might fall within the 1% code people are saying is different, I haven't checked the two JDKs' code myself yet actually.

link|improve this answer
feedback

I have been doing some CS research where the program I am working on is written mostly in C but uses the JNI for some new tasks (eventually the whole program will be translated into java) Anyway... I was doing test runs on two different machines and one was completing the tests and the other was getting stuck. It turns out that the difference was the first machine had sun-jdk and the other had open-jdk. When I installed sun-jdk on the machine, it was able to complete the tests. So somewhere there is a difference between the two. Possibly in the way they implemented the JNI? If thats the case it likely wouldn't effect a normal user.

link|improve this answer
feedback

In my project am using Sun JDK, earlier we had Open JDK but it gave font issues. So we moved to Sun JDK.

link|improve this answer
feedback

Oracle JDK 7 is built from OpenJDK.

link|improve this answer
feedback

You should use the Oracle JDK whenever the software requires it. For example, most Hadoop-based projects clearly state that bad things can happen if you use OpenJDK. I'm sure there are many other examples, but that's the one that I'm working with at the moment.

link|improve this answer
feedback

There have been a lot of good answers by a lot of much better programmers than I. However as a part-developer part-sysadmin of Java Applications I can offer one further suggestion.

While the other answers are very important to consider, regarding the choice between OpenJDK and Oracle JDK primarily, my decision is generally about 90% dependent on.... what the core developers of the target platform or software are using.

That sounds a bit simplified, but it really does work well.

For example, we have a client with a ERB/Glassfish/Java EE/netbeans platform. Initially I tried running that on a CentOS machine with OpenJDK 1.6. However there were continual problems and cases requiring submitting bug reports etc. It turns out that the fixes are already in the Oracle patches, but won't make it to the CentOS/RHEL repos for 6 months.

I have had an opposite experience with tomcat on CentOS, in that the CentOS/Apache/MySQL/Tomcat stack is a very well tested set of packages in the RHEL ecosystem. This also applies to Ubuntu ecosystem now they are shipping OpenJDK.

I originally learned my lesson on this one, with trying to run the configuration management tool Chef, by using the RPM packages from the CentOS repos, and they were always 6 months behind. It turns out that the developers focused on releasing to rubygems first, and once I realised I was just making it hard for myself, it went much more smoothly.

There are loads of little things that add up to make the case, for example just submitting a bugfix, its might be hard to get a core-developer to take a look at it, because they don't have a box with OpenJDK installed...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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