What are the differences between OpenJDK and JDK?
Why would I use one rather than the other?
Which works better with Netbeans?
feedback
|
This question came from our site for computer enthusiasts and power users.
|
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. | |||||
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/ | ||||
|
feedback
|