askvity

Who Developed JDK?

Published in Java Development 2 mins read

The Java Development Kit (JDK) is developed by Oracle Corporation.

The JDK is a crucial component for anyone working with the Java programming language. It provides the tools necessary to write, compile, debug, and run Java applications. While the Java platform originated at Sun Microsystems, which was later acquired by Oracle, Oracle Corporation is currently the primary developer and maintainer of the official JDK.

Key Information about JDK

According to the provided reference from Wikipedia, the Java Development Kit is detailed as follows:

Aspect Detail
Developer(s) Oracle Corporation
Operating system Windows, macOS, Linux
Platform aarch64, x86-64
License Oracle No-Fee Terms and Conditions (NFTC) with third party components
Website oracle.com/java/technologies/

What is the JDK?

The JDK isn't just a single program; it's a comprehensive bundle that includes:

  • Java Runtime Environment (JRE): This is needed to run Java applications.
  • Java Compiler (javac): Converts Java source code (.java files) into bytecode (.class files).
  • Archiver (jar): Packages related class libraries into a single JAR file.
  • Documentation Generator (javadoc): Creates API documentation from source code comments.
  • Debugger (jdb): Helps in finding and fixing errors in Java code.

These tools, developed and maintained by Oracle Corporation, empower developers to create and deploy Java applications across various platforms.

Related Articles