If Java can run on any system, why is apple so protective of Java and its updates?

link|improve this question
Why does "run on any system" exclude being protective? – ceejayoz Jan 28 at 21:35
feedback

closed as off topic by SvenW, ceejayoz, voretaq7 Jan 28 at 21:41

Questions on Server Fault are expected to generally relate to servers, networking, or desktop infrastructure, within the scope defined in the faq.

1 Answer

Apple used to supply their own version of Java, but have moved away from that in favour of donating the code to the OpenJDK project.

The fundamental reason is that Java is portable, but the JVM isn't - especially components that are about the platform, such as sound, file-system, and GUI components.

What Apple did was write the OS-X parts of the JVM, and ship them. The OpenJDK move is, in fact, their declaration that they don't want the cost of porting Java to their platform any longer, and that the community can have it.

link|improve this answer
feedback

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