JDK Installation

How to Jdk Installation 

JDK stands for Java Development Kit or sometimes it is also referred as Java Standard Edition Development Kit. JDK is a development environment to develop wide range of applications such as desktop applications, web applications or mobile applications using Java programming language.

JRE, Java Runtime Environment, is also part of JDK. JRE provides the minimum requirements for executing a java application. It consists of Java Virtual Machine(JVM) executables, core classes and some supporting files.

You can download the latest version of JDK from official website of Oracle. Here is the link.

After downloading JDK, double click on the application file and follow these steps for JDK installation.

Step 1 : click on Next.
Step 2 :There are three features: Development Tools, Source Code and Public JRE. In these, development tools is compulsory and others are optional. You can choose optional features not to install but best way is to install them also. Choose location for installing JDK. By default it is C:\Program Files (x86)\Java\jdk1.7.0_25\.  If you want, you can change the location . After selecting location click on Next.

Step 3 : If you have choosed Public JRE to install then select location for Public JRE. Default location is C:\Program Files (x86)\Java\jre7\. After selecting the location click on Next.

Public JRE is a Standalone JRE. Any java application running on your system can use this JRE. It can be uninstalled seperately from JDK. Private JRE is installed inside JDK folder (C:\Program Files (x86)\Java\jdk1.7.0_25\jre) or jdk 1.8 /jre. It is used by the tools like javac etc.
Step 4 : Click on Close.

Comments

Popular posts from this blog

What is string immutability?