Home     Blog

JDK (Java Development Kit)

The JDK is the Java Development Kit.

The JDK consists of the Java compiler and related tools which enable users to create applications in Java.

Sun distributes the JDK as part of J2EE, J2SE, and J2ME.

Java Video Tutorial 1: Installing the Java Development Kit

This tutorial is the first of a collection of basic java video tutorials that will get you started. In this tutorial you will learn how to install the JDK on a Windows XP machine.

{youtube}v/ue3bhCZ60Jk{/youtube}

 

 JDK (Java Development Kit)

VN:F [1.9.17_1161]
Rating: 0.0/10 (0 votes cast)
Follow Will.Spencer on

Leave a Reply

Related Posts

  • How to Install Java

    Many applications require the Java Runtime Environment (JRE) to run. The JRE must be downloaded and installed on each PC where you intend to run Java-based applications. Steps to Install Java on Microsoft Windows Go to the Java Software Download Page Select the proper version of Java for your computer Click the download button Click [...]...


  • Java Compiler

    A Java compiler is a program which converts Java source code into Java bytecode. A basic Java compiler is included as part of the JDK (Java Development Kit). This Java compiler is called “javac”.              ...


  • How to Debug Java

    The JDK ships with jdb, the Java Debugger. JSwat is a better way to debug Java. JSwat is a graphical Java debugger front-end which is licensed under the GPL. Patricia Sherman has written an excellent tutorial on debugging Java, titled Debug Strategy....


  • How to Declare a Constant in Java

    Java does not directly support constants. However, a static final variable is effectively a constant. The static modifier causes the variable to be available without loading an instance of the class where it is defined. The final modifier causes the variable to be unchangeable. Naming Standards for Java Constants Java constants are normally declared in [...]...


  • How to Enable Sun Java in Internet Explorer

    Sun Java or Java may not be enabled on your web browser, causing difficulty in accessing the web. To enable Java in Internet Explorer (version 7.x), follow the process defined below: Open Internet Explorer. Pull down the “Tools” menu. Select “Internet Options.” Select the “Advanced” tab on far right. Scroll down and check the box [...]...