The Java Development Kit (JDK) is an implementation of either one of the Java SE, Java EE or Java ME platforms released by Oracle Corporation in the form of a binary product aimed at Java developers on Solaris, Linux, Mac OS X or Windows. Since the introduction of Java platform, it has been by far the most widely used Software Development Kit (SDK). On 17 November 2006, Sun announced that it would be released under the GNU General Public License (GPL), thus making it free software. This happened in large part on 8 May 2007, when Sun contributed the source code to the OpenJDK.
[Source: Wikipedia]
Java Platform, Standard Edition (Java SE) lets you develop and deploy Java applications on desktops and servers, as well as in today’s demanding embedded environments. Java offers the rich user interface, performance, versatility, portability, and security that today’s applications require. First of all download jdk from here and extract it.
Download JDK
1 2 3 4 | $ cd ~/Downloads/ $ sudo tar xvzf jdk-7u21-linux-i586.tar.gz -C /usr/local/ |
Now, set the JAVA_HOME environment variable
1 2 3 | $ export JAVA_HOME=/usr/local/jdk1.7.0_21/ |