JVM Tutorials - Herong's Tutorial Examples
Dr. Herong Yang, Version 4.10

Download and Install Java SE 1.6 Update 2

This chapter provides a tutorial example on how to download and install Java SE 1.6 Update 2 (JDK 6u2) on Windows systems.

Java SE 1.6 has been released for some time now. Here was what I did to download and install JDK 6u2 (Java(TM) SE Development Kit 6 Update 2). on my local machine.

  • Open the Java SE Download page with this URL: http://java.sun.com/javase/downloads/.
  • Click the download button next to "JDK 6u2". You will see a new page with a list of different download files of JDK 6u2.
  • Locate the "Windows Platform - Java(TM) SE Development Kit 6 Update 2" section.
  • Click the hyper link of "Windows Offline Installation (build 06), Multi-language", which links to jdk-6u2-windows-i586-p.exe with size of 65.57 MB.
  • Save jdk-6u2-windows-i586-p.exe to a temporary directory.
  • Double-click on jdk-6u2-windows-i586-p.exe to start the installation wizard.
  • The installation wizard will guide you to finish the installation.

To test the installation, open a command window to try the java command. If you are getting the following output, your installation was ok:

C:>\progra~1\java\jdk1.6.0_02\bin\java -version
java version "1.6.0_02"
Java(TM) SE Runtime Environment (build 1.6.0_02-b06)
Java HotSpot(TM) Client VM (build 1.6.0_02-b06, mixed mode, 
sharing)

Last update: 2007.

Table of Contents

 About This Book

Download and Install Java SE 1.6 Update 2

 java.lang.Runtime Class - The JVM Instance

 java.lang.System Class - The Operating System

 ClassLoader Class - Class Loaders

 Class Class - Class Reflections

 Sun's JVM - Java HotSpot VM

 JRockit JVM 7.0 by BEA Systems

 JRockit JVM 8.0 by BEA Systems

 Memory Management Rules and Tests

 Garbage Collection Tests

 Stack Overflow Tests

 Thread Testing Program and Result

 StringBuffer Testing Program and Result

 CDS (Class Data Sharing)

 Micro Benchmark Runner and JVM Options

 Micro Benchmark Tests on "int" Operations

 Micro Benchmark Tests on "long" Operations

 Micro Benchmark Tests in JIT Compilation Mode

 Micro Benchmark Tests on "float" and "double" Operations

 References

 PDF Printing Version

Dr. Herong Yang, updated in 2010
Download and Install Java SE 1.6 Update 2