The Java Development Kit (JDK) is one of three core technology packages used in Java programming, along with the JVM (Java Virtual Machine) and the JRE (Java Runtime Environment). It's important to differentiate between these three technologies, as well as understanding how they're connected:
Developers new to Java often confuse the Java Development Kit and the Java Runtime Environment. The distinction is that the JDK is a package of tools for developing Java-based software, whereas the JRE is a package of tools for running Java code.
The JRE can be used as a standalone component to simply run Java programs, but it's also part of the JDK. The JDK requires a JRE because running Java programs is part of developing them. Figure 1 shows how the JDK fits into the Java application development lifecycle.
Just as we did with my recent introduction to the Java Virtual Machine, let's consider the technical and everyday definitions of the JDK:
Get started with the JDKGetting Java setup in your development environment is as easy as downloading a JDK and adding it to your classpath. When you download your JDK, you will need to select the version of Java you want to use. Java 8 is the version most commonly in use, but as of this writing Java 10 is the newest release. Java maintains backward compatibility, so we'll just download the latest release. JDK packagesIn addition to choosing your Java version, you will also need to select a Java package. Packages are Java Development Kits that are targeted for different types of development. The available packages are Java Enterprise Edition (Java EE), Java Standard Edition (Java SE), and Java Mobile Edition (Java ME).
Novice developers are sometimes unsure which package is correct for their project. Generally, each JDK version contains Java SE. If you download Java EE or Java ME, you will get the standard edition with it. For example, Jave EE is the standard platform with additional tools useful for enterprise application development such as Enterprise JavaBeans or support for Object Relational Mapping.
It's also not hard to switch to a different JDK in the future if you find you need to. Don't worry too much about choosing the correct Java version and JDK package when you are just starting out.
Downloading the JDKWe'll stick with Java SE for this tutorial, so that we can focus on the core JDK classes and technologies. To download the Java SE JDK, visit Oracle's official download page. You'll see the various JDK packages available, as shown in Figure 2.
Before you select the Java SE download, take a minute to look at the other options. There's a lot cooking in the Java kitchen!
Go ahead and download the Java Standard Edition JDK. Options for that are shown in Figure 3.
Installing the JDKWhen you run the JDK installer, you are offered a selection of three components: Development Tools, Source Code, and Public JRE. You may install one or all of them. In this case, just select the default.
Installing the 'Development Tools' option gives you the JDK proper. Installing 'Source Code' contains the sources for the public classes in the core Java API. Including this option allows you to reference the source code when building apps. The third option, 'Public JRE,' drives home that the JDK and JRE are separate entities: the public JRE can be used by other programs to execute Java programs, and can be installed separately from the JDK.
Go ahead and install all three components and accept the defaults for each one. Doing this means your JDK and JRE will be installed in the default locations for your operating system. On Windows, that's C:\Program Files\Java, as seen in Figure 4.
The JDK on the command lineInstalling the JDK and JRE adds the
It's good to have
The javac commandThe
A simple Java programStep 1. Write a simple Java programCreate a new text file, called Next, add the code from Listing 1, which is a very simple Java program. Listing 1. Intro.javapublic class Intro { public static void main(String[] args) { System.out.println('Welcome to the JDK!'); }} Step 2. Compile with the JDKNext, use the JDK compiler to turn your text file into an executable program. Compiled code in Java is known as bytecode, and carries the You'll use the Listing 2. Compile with the JDK
That should result in a successful compile. The Step 3. Run the .class fileYou should now see the You can run it by typing: Listing 3. Running Intro.classC:\Users\mtyson\Documents>java IntroWelcome to the JDK! The jar commandThe A .jar file is a packaged set of Java classes. Once the compiler has created the Let's convert Navigate back to the directory where you placed your Listing 4. Create a JAR file
Executing the jarNow you'll see an java -cp intro.jar Intro The The JDK in your IDELooking back to the JDK download page, you may have noticed the option to download the JDK with the Netbeans IDE. An IDE, or integrated development environment, is software that provides a cohesive set of tools for developing applications. Think of an IDE as a visual operating system with a set of tools, like a file browser and text editor, with additional capabilities specific to development, like code completion and formatting. In Java development, one of the key things the IDE does is manage compilation for you. That is, the IDE automatically runs the compile process in the background so you don't have to continually do it yourself. An IDE also provides play-by-play feedback as you go, catching coding errors on the fly. Several solid IDEs exist for Java. You've seen how the JDK works on the command-line, so now Let's take a quick look at how it works in the Eclipse IDE. Eclipse and the JDKInstalling Eclipse is outside the scope of this guide, but it's a simple process. Eclipse includes an installer like any other program, and you can find the right installer for your operating system here. With Eclipse installed, open the Window menu item from the menu bar and select preferences. Inside the preferences window, you'll see the Java item. Open it, and inside you'll see the Compiler item. Clicking that will reveal some options for the JDK. Figure 5 shows a screenshot of the JDK options in Eclipse. As previously mentioned, you will need to select the correct JDK version for your project. Under the hood, the IDE will run the JDK compiler, just as you ran it from the command line. The Eclipse IDE also has its own JDK instance. The IDE manages the JDK and JRE for you, which makes life much easier! ConclusionThis article is the second in a short series introducing three core Java platform components: the JVM, JDK, and JRE. Look for the next article in the series, where you'll learn all about the Java Runtime Environment. |
|
來(lái)自: imnobody2001 > 《Java》