I see many different Java terms floating around. I need to install the JDK 1.6. It was my understanding that Java 6 == Java 1.6. However, when I install Java SE 6, I get a JVM that reports as version 11.0! Who can solve the madness?
|
|
When you type "java -version", you see three version numbers - the java version (on mine, that's " Update: HotSpot is (or used to be, now they seem to use it to mean the whole VM) the just-in-time compiler that is built in to the Java Virtual Machine. God only knows why Sun gives it a separate version number. |
|||||||||||
|
SE defines a set of capabilities and functionalities; there are more complex editions (Enterprise Edition - EE) and simpler ones (Mobile Edition - ME - for mobile environments). The JDK includes the compiler and other tools needed to develop Java applications; JRE does not. So, to run a Java application someone else provides, you need JRE; to develop a Java application, you need JDK. Edited: As Chris Marasti-Georg pointed out in a comment, you can find out lots of information at Sun's Java web site, and in particular from the Java SE section, (2nd option, Java SE Development Kit (JDK) 6 Update 10). Edited 2011-04-06:
The world turns, and Java is now managed by Oracle, which bought Sun. Later this year, the Edited 2012-01-11: And the world keeps on turning (2012-12-21 notwithstanding), and lo and behold, JRE 6 is about to reach its end of support. Oracle says no more public updates to Java 6 after February 2013. Within a given version of Java, this answer remains valid. JDK is the Java Development Kit, JRE is the Java Runtime Environment, Java SE is the standard edition, and so on. But the version 6 (1.6) is becoming antiquated. |
|||||||||||
|
|
This might help someone: I am installing the latest Java on my system for development, and currently it's Java SE 7. Now, let's dive into this "madness", as you put it... All of these are the same (when developers are talking about Java for development):
Starting with Java v1.5:
And we can assume this will remain for future versions. Next, for developers, download JDK, not JRE. JDK will contain JRE. If you need JDK and JRE, get JDK. Both will be installed from the single JDK install, as you will see below. As someone above mentioned:
Here's the step by step links I followed (one step leads to the next, this is all for a single download) to download Java for development (JDK):
Keep in mind the above links are for reference purposes only, to show you the step by step method of what it takes to download the JDK. And install with default settings to:
Remember from above that JDK contains JRE, which makes sense if you know what they both are. Again, see above. After your install, double check “C:\Program Files\Java” to see both these folders. Now you know what they are and why they are there. I know I wrote this for newbies, but I enjoy knowing things in full detail, so I hope this helps. |
||||
|
|
|
Sun can solve the madness. Others may be able to explain it. |
|||||||||||
|
|
With the release of Java 5, the product version was made distinct from the developer version as described here |
|||
|
|
|
The following reference is useful: http://www.oracle.com/technetwork/java/javase/namechange-140185.html "Java SE Naming and Versions" Dan Simkin |
|||||
|