What are the differences between OpenJDK and JDK?

Why would I use one rather than the other?

Which works better with Netbeans?

link|improve this question

40% accept rate
I would migrate it to Programmers, as this is not really a problem to be solved xD – fortran Oct 25 '11 at 15:30
feedback

migrated from superuser.com Oct 25 '11 at 14:58

This question came from our site for computer enthusiasts and power users.

2 Answers

The Sun (and now Oracle) JDK used to be the reference implementation of Java. But a lot of people considered it dangerous to use because it was not fully open source.

OpenJDK is an effort launched by Sun in 2006 to develop a fully open source (GPL) and fully compatible Java implementation. This needed to be a separate project and took a long time because the Sun/Oracle JDK included proprietary third-party components.

Beginning with Java 7, OpenJDK is the official Java reference implementation, and major players in the software industry like Apple, IBM and SAP are contributing to it.

link|improve this answer
4  
Whoa, I didn't know OpenJDK is the reference implementation for 7! Good info. – G_H Oct 25 '11 at 15:12
feedback

Long ago (maybe Java 1.5 days?) I noticed some differences in the Java2D API implementation.

I implemented a simple pseudo-3D engine on top Java 2D (it basically applied perspective transformations to planes), and when running it with OpenJDK it could not draw properly some of the shapes (I cannot remember the exact details, but I think it was something related with the path iterators).

I think nowadays those major issues are solved, but you can still notice that the fonts are rendered differently, OpenJDK not having antialiasing (at least enabled by default, maybe there's a flag to activate it). This was very noticeable when programming in NetBeans.

edit: actually, there is a flag to enable antialiasing: http://hedayatvk.wordpress.com/2010/02/26/antialiasing-and-java/

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.