Jump to content

Java version history

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Pmsyyz (talk | contribs) at 22:46, 10 January 2014 (→‎Java 7 updates: 36 security fixes upcoming, with ref). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Java Web Start, first introduced for J2SE 1.3, allows provisioning of applications over the Web by clicking a desktop icon or a link on a website.

The Java language has undergone several changes since JDK 1.0 as well as numerous additions of classes and packages to the standard library. Since J2SE 1.4, the evolution of the Java language has been governed by the Java Community Process (JCP), which uses Java Specification Requests (JSRs) to propose and specify additions and changes to the Java platform. The language is specified by the Java Language Specification (JLS); changes to the JLS are managed under JSR 901.

In addition to the language changes, much more dramatic changes have been made to the Java Class Library over the years, which has grown from a few hundred classes in JDK 1.0 to over three thousand in J2SE 5. Entire new APIs, such as Swing and Java2D, have been introduced, and many of the original JDK 1.0 classes and methods have been deprecated.

Some programs allow conversion of Java programs from one version of the Java platform to an older one (for example Java 5.0 backported to 1.4) (see Java backporting tools). After Java 7 release, Oracle promises to go back to a 2 year release cycle.[1] However, on April 18, 2013, Oracle announced that they would delay Java 8 by one year, in order to improve the Java security model.[2]

JDK Alpha and Beta (1995)

Alpha and Beta Java public releases had highly unstable APIs and ABIs. The supplied Java web browser was named WebRunner.

JDK 1.0 (January 23, 1996)

Codename Oak. Initial release[3][4] The first stable version was the JDK 1.0.2. is called Java 1.[4]

Note : In versions of Java and the JDK up to 1.0.1, you could use private and protected together to create yet another form of protection that would restrict access to methods or variables solely to subclasses of a given class. As of 1.0.2, this capability has been removed from the language.

JDK 1.1 (February 19, 1997)

Major additions included:[5]

  • an extensive retooling of the AWT event model
  • inner classes added to the language
  • JavaBeans
  • JDBC
  • RMI
  • reflection which supported Introspection only, no modification at runtime was possible.
  • JIT(Just In Time) compiler on Microsoft Windows platforms, produced for JavaSoft by Symantec

J2SE 1.2 (December 8, 1998)

Codename Playground. This and subsequent releases through J2SE 5.0 were rebranded retrospectively Java 2 and the version name "J2SE" (Java 2 Platform, Standard Edition) replaced JDK to distinguish the base platform from J2EE (Java 2 Platform, Enterprise Edition) and J2ME (Java 2 Platform, Micro Edition). This was a very significant release of Java as it tripled the size of the Java platform to 1520 classes in 59 packages. Major additions included:[6]

J2SE 1.3 (May 8, 2000)

Codename Kestrel. The most notable changes were:[7][8]

J2SE 1.4 (February 6, 2002)

Codename Merlin. This was the first release of the Java platform developed under the Java Community Process as JSR 59. Major changes included:[9][10]

Language changes
Library improvements

Support and security updates for Java 1.4 ended in October 2008.[11]

J2SE 5.0 (September 30, 2004)

Codename Tiger. Originally numbered 1.5, which is still used as the internal version number.[12] This version was developed under JSR 176.

J2SE 5.0 entered its end-of-public-updates period on April 8, 2008 updates are no longer available to the public as of November 3, 2009. Updates will be available to Oracle Customers until May 2014.[13]

Tiger added a number of significant new language features:[14][15]

  • Generics: Provides compile-time (static) type safety for collections and eliminates the need for most typecasts (type conversion). (Specified by JSR 14.)
  • Metadata: Also called annotations; allows language constructs such as classes and methods to be tagged with additional data, which can then be processed by metadata-aware utilities. (Specified by JSR 175.)
  • Autoboxing/unboxing: Automatic conversions between primitive types (such as int) and primitive wrapper classes (such as Integer). (Specified by JSR 201.)
  • Enumerations: The enum keyword creates a typesafe, ordered list of values (such as Day.MONDAY, Day.TUESDAY, etc.). Previously this could only be achieved by non-typesafe constant integers or manually constructed classes (typesafe enum pattern). (Specified by JSR 201.)
  • Varargs: The last parameter of a method can now be declared using a type name followed by three dots (e.g. void drawtext(String... lines)). In the calling code any number of parameters of that type can be used and they are then placed in an array to be passed to the method, or alternatively the calling code can pass an array of that type.
  • Enhanced for each loop: The for loop syntax is extended with special syntax for iterating over each member of either an array or any Iterable, such as the standard Collection classes. (Specified by JSR 201.)
  • Fix the previously broken semantics of the Java Memory Model, which defines how threads interact through memory.
  • Static imports

There were also the following improvements to the standard libraries:

Java 5 is the last release of Java to officially support the Microsoft Windows 9x line (Windows 95, Windows 98, Windows ME),[17] while Windows Vista is the newest version of Windows that J2SE 5 was supported on prior to Java 5 going end of life in October 2009.[11]

Java 5 is the default version of Java installed on Apple Mac OS X 10.5 (Leopard). Java 6 can be installed and set as the default to be used on 64-bit (Core 2 Duo and higher) processor machines.[18] Java 6 is also supported by 32-bit machines running Mac OS X 10.6 (Snow Leopard).

Java SE 6 (December 11, 2006)

Codename Mustang. As of this version, Sun replaced the name "J2SE" with Java SE and dropped the ".0" from the version number.[19] Internal numbering for developers remains 1.6.0.[20] This version was developed under JSR 270.

During the development phase, new builds including enhancements and bug fixes were released approximately weekly. Beta versions were released in February and June 2006, leading up to a final release that occurred on December 11, 2006.

Major changes included in this version:[21][22]

  • Support for older Win9x versions dropped; unofficially, Java 6 Update 7 was the last release of Java shown to work on these versions of Windows.[citation needed] This is believed[by whom?] to be due to the major changes in Update 10.
  • Scripting Language Support (JSR 223): Generic API for tight integration with scripting languages, and built-in Mozilla JavaScript Rhino integration
  • Dramatic performance improvements for the core platform,[23][24] and Swing.
  • Improved Web Service support through JAX-WS (JSR 224)
  • JDBC 4.0 support (JSR 221).
  • Java Compiler API (JSR 199): an API allowing a Java program to select and invoke a Java Compiler programmatically.
  • Upgrade of JAXB to version 2.0: Including integration of a StAX parser.
  • Support for pluggable annotations (JSR 269)[25]
  • Many GUI improvements, such as integration of SwingWorker in the API, table sorting and filtering, and true Swing double-buffering (eliminating the gray-area effect).
  • JVM improvements include: synchronization and compiler performance optimizations, new algorithms and upgrades to existing garbage collection algorithms, and application start-up performance.[26]

Java 6 reached the end of its supported life in February 2013, at which time all updates, including security updates, were scheduled to be stopped.[27][28] Oracle released one more update to Java 6 in March 2013, which patched some security vulnerabilities.[29]

Java 6 updates

After Java 6 release, Sun, and later Oracle, released several updates which, while not changing any public API, enhanced end-user usability or fixed bugs.[30]

Release Release Date Highlights
Java SE 6 Update 1 2007-05-07
Java SE 6 Update 2 2007-07-03
Java SE 6 Update 3 2007-10-03
Java SE 6 Update 4 2008-01-14 HotSpot VM 10
Java SE 6 Update 5 2008-03-05
Java SE 6 Update 6 2008-04-16
Java SE 6 Update 7[31] Unofficially, Java SE 6 Update 7 (1.6.0.7) is the last version of Java that was shown to be working on the Win9x family of operating systems[citation needed]
Java SE 6 Update 10[32] 2008-10-15 HotSpot VM 11. Major changes for this update include:
  • Java Deployment Toolkit, a set of JavaScript functions to ease the deployment of applets and Java Web Start applications.[33]
  • Java Kernel, a small installer including only the most commonly used JRE classes. Other packages are downloaded when needed.
  • Enhanced updater.
  • Enhanced versioning and pack200 support: server-side support is no longer required.[34]
  • Java Quick Starter, to improve cold start-up time.
  • Improved performance of Java2D graphics primitives on Windows, using Direct3D and hardware acceleration.
  • A new Swing look and feel called Nimbus and based on synth.[35]
  • Next-Generation Java Plug-In: applets now run in a separate process and support many features of Web Start applications.[36]
Java SE 6 Update 11[37] 2008-12-03 13 security fixes[38]
Java SE 6 Update 12[39] 2008-12-12 No security fixes; 64-bit Java plug-in (for 64-bit web browsers only); Windows Server 2008 support; performance improvements of graphics and JavaFX applications
Java SE 6 Update 13[40] 2009-03-24 7 security fixes, JNDI store and retrieve Java objects in LDAP slightly modified, JMX Change (createMBeanunregisterMBean), 4 new root certs added
Java SE 6 Update 14[41] 2009-05-28 HotSpot VM 14. This release includes extensive performance updates to the JIT compiler, compressed pointers for 64-bit machines, as well as support for the G1 (Garbage First) low pause garbage collector.[42][43]

The -XX:+DoEscapeAnalysis option directs the HotSpot JIT compiler to use escape analysis to determine if local objects can be allocated on the stack instead of the heap.[44]

Some developers have noticed an issue introduced in this release which causes debuggers to miss breakpoints seemingly randomly.[45] Sun has a corresponding bug, which is tracking the issue. The workaround applies to the Client and Server VMs.[46] Using the -XX:+UseParallelGC option will prevent the failure. Another workaround is to roll back to update 13, or to upgrade to update 16.

Java SE 6 Update 15 2009-08-04 Introduced patch-in-place functionality[47]
Java SE 6 Update 16 2009-08-11 Fixed the issue introduced in update 14 which caused debuggers to miss breakpoints[48]
Java SE 6 Update 17[49] 2009-11-04 Security fixes; 2 new root certificates
Java SE 6 Update 18[50] 2010-01-13 No security fixes; Hotspot VM 16; support for Ubuntu 8.04 LTS Desktop Edition, SLES 11, Windows 7, Red Hat Enterprise Linux 5.3, Firefox 3.6, VisualVM 1.2; updated Java DB; many performance improvements
Java SE 6 Update 19[51] 2010-03-30 Security fixes; root certificate changes: seven new, three removed, five replaced with stronger signature algorithms; interim fix for TLS renegotiation attack
Java SE 6 Update 20[52] 2010-04-15 Two security fixes
Java SE 6 Update 21[53] 2010-07-07 No security fixes; Hotspot VM 17; support for Red Hat Enterprise Linux 5.4 and 5.5, Oracle Enterprise Linux 4.8, 5.4, 5.5; Google Chrome 4 support; support for Customized Loading Progress Indicators; VisualVM 1.2.2
Java SE 6 Update 22[54] 2010-10-12 29 security fixes; RFC 5746 support
Java SE 6 Update 23[55] 2010-12-08 No security fixes; Hotspot VM 19; better support for right-to-left languages
Java SE 6 Update 24[56] 2011-02-15 21 security fixes; updated Java DB
Java SE 6 Update 25 2011-03-21 No security fixes; Hotspot VM 20; support for Internet Explorer 9, Firefox 4 and Chrome 10; improved BigDecimal; includes "tiered" compilation in the Server VM that enables it to start quickly as does the Client VM, while achieving better peak performance (this feature is enabled by specifying -server and -XX:+TieredCompilation command options)[57]
Java SE 6 Update 26[58] 2011-06-07 17 new security fixes.[59] Last version compatible with Windows Vista SP1.
Java SE 6 Update 27[60] 2011-08-16 No security fixes; certification for Firefox 5
Java SE 6 Update 29[61] 2011-10-18 20 security fixes, various bug fixes[62]
Java SE 6 Update 30[63] 2011-12-12 No security fixes; fix for SSL regression in Update 29; support for Red Hat Enterprise Linux 6
Java SE 6 Update 31[64] 2012-02-14 14 security fixes and one bug fix
Java SE 6 Update 32[65] 2012-04-26 No security fixes, various bug fixes
Java SE 6 Update 33[66] 2012-06-12 14 security fixes, improved VM configuration file loading
Java SE 6 Update 34[67] 2012-08-14 No security fixes, various bug fixes
Java SE 6 Update 35[68] 2012-08-30 Contains a security-in-depth fix[69]
Java SE 6 Update 37[70] 2012-10-16 30 security fixes
Java SE 6 Update 38[71] 2012-12-11 Various bug fixes[72]
Java SE 6 Update 39[73] 2013-02-01 50 security fixes
Java SE 6 Update 41[74] 2013-02-19 5 security fixes
Java SE 6 Update 43[75] 2013-03-04 2 security fixes
Java SE 6 Update 45[76] 2013-04-16 42 security fixes;[77] other changes;[76] final public update[78]
Java SE 6 Update 51[79] 2013-06-18 Not available publicly, only available through the Java SE Support program and in Apple Update for OS X Snow Leopard, Lion & Mountain Lion; up to 40 security fixes[80]
Java SE 6 Update 65[81] 2013-10-15 Not available publicly, only available through the Java SE Support program and in Apple Update for OS X Snow Leopard, Lion & Mountain Lion; at least 11 critical security fixes[82]

Java SE 7 (July 28, 2011)

Java 7 (codename Dolphin[83]) is a major update that was launched on July 7, 2011[84] and was made available for developers on July 28, 2011.[85] The development period was organized into thirteen milestones; on June 6, 2011, the last of the thirteen milestones was finished.[86][87] On average, 8 builds (which generally included enhancements and bug fixes) were released per milestone. The feature list at the OpenJDK 7 project lists many of the changes.

Additions in Java 7 include:[88]

  • Strings in switch[93]
  • Automatic resource management in try-statement[94]
  • Improved type inference for generic instance creation, aka the diamond operator <>[95]
  • Simplified varargs method declaration[96]
  • Binary integer literals[97]
  • Allowing underscores in numeric literals[98]
  • Catching multiple exception types and rethrowing exceptions with improved type checking[99]
  • Concurrency utilities under JSR 166[100]
  • New file I/O library to enhance platform independence and add support for metadata and symbolic links. The new packages are java.nio.file and java.nio.file.attribute[101][102]
  • Timsort is used to sort arrays instead of merge sort
  • Library-level support for elliptic curve cryptography algorithms
  • An XRender pipeline for Java 2D, which improves handling of features specific to modern GPUs
  • New platform APIs for the graphics features originally implemented in version 6u10 as unsupported APIs[103]
  • Enhanced library-level support for new network protocols, including SCTP and Sockets Direct Protocol
  • Upstream updates to XML and Unicode

Lambda (Java's implementation of lambda functions), Jigsaw (Java's implementation of modules), and part of Coin were dropped from Java 7. Java 8 will be released with the remaining features in spring 2014.[104]

Java 7 updates

Oracle plans to issue updates to the Java 7 family on a quarterly basis.[105]

Release Release Date Highlights
Java SE 7[106] 2011-07-28 Initial release. HotSpot VM 21
Java SE 7 Update 1[107] 2011-10-18 20 security fixes, other bug fixes
Java SE 7 Update 2[108] 2011-12-12 No security fixes; HotSpot VM 22; reliability and performance improvements; support for Solaris 11 and Firefox 5 and later; JavaFX included with Java SE JDK, improvements for web-deployed applications
Java SE 7 Update 3[109] 2012-02-14 14 security fixes[110]
Java SE 7 Update 4[111] 2012-04-26 No security updates; HotSpot VM 23; JDK Support for Mac OS X
Java SE 7 Update 5[112] 2012-06-12 14 security fixes[113]
Java SE 7 Update 6[114] 2012-08-14 JavaFX and Java Access Bridge included in Java SE JDK and JRE installation, JavaFX support for touch-enabled monitors and touch pads, JavaFX support for Linux, JDK and JRE Support for Mac OS X, JDK for Linux on ARM[115]
Java SE 7 Update 7[116] 2012-08-30 4 security fixes[69]
Java SE 7 Update 9[117] 2012-10-16 30 security vulnerabilities fixes[118]
Java SE 7 Update 10[119] 2012-12-11 New security features, such as the ability to disable any Java application from running in the browser and new dialogs to warn you when the JRE is insecure, and bug fixes
Java SE 7 Update 11[120] 2013-01-13 Olson Data 2012i, bugfix for problems with registration of plugin on systems with Stand-alone version of JavaFX Installed, security fixes for CVE-2013-0422;[121] the default security level for Java applets and web start applications has been increased from "Medium" to "High"
Java SE 7 Update 13[122] 2013-02-01 50 security fixes
Java SE 7 Update 15[123] 2013-02-19 5 security fixes
Java SE 7 Update 17[124] 2013-03-04 2 security fixes
Java SE 7 Update 21[125] 2013-04-16 Multiple changes including 42 security fixes, a new Server JRE that doesn't include the plug-in, and the JDK for Linux on ARM
Java SE 7 Update 25[126] 2013-06-18 Multiple changes including 40 security fixes[80][127]
Java SE 7 Update 40[128] 2013-09-10 New security features, hardfloat ARM, Java Mission Control and Retina Display support[129]
Java SE 7 Update 45[130] 2013-10-15 51 security fixes,[131] Protections against unauthorized redistribution of Java applications, Restore security prompts, JAXP changes, TimeZone.setDefault change.
Java SE 7 Update 51 2014-Jan Upcoming release, 36 security fixes[132]

Java SE 8

Java 8 is expected in March 2014[133][134] and will include features that were planned for Java 7 but later deferred.[citation needed]

  • JSR 335: Language-level support for lambda expressions (officially, lambda expressions; unofficially, closures) under Project Lambda.[135] There was an ongoing debate in the Java community on whether to add support for lambda expressions.[136][137] Sun later declared that lambda expressions would be included in Java and asked for community input to refine the feature.[138]
  • Parts of project Coin that are not included in Java 7[which?]
  • JSR 223: Project Nashorn, a JavaScript runtime which allows developers to embed JavaScript code within applications
  • JSR 308: Annotations on Java Types
  • JSR 310: Date and Time API

Development builds[139] are published weekly; they should only be used for evaluating new features.

Java SE 9

At JavaOne 2011, Oracle discussed features they hope to have in a 2016[140] release of Java 9, including better support for multi-gigabyte heaps, better native code integration, and a self-tuning JVM.[141]

There are plans to add automatic parallelization using OpenCL.[1][148]

Java SE 10

There is speculation of removing primitive data types and move towards 64-bit addressable arrays to support large data sets.[1]

Implementations

OpenJDK is a free and open source implementation of the Java Platform, Standard Edition (Java SE).

Before OpenJDK, several Free Java implementations were done by various companies and groups such as Apache Harmony. IBM also provides Java implementations of the JVM,[149] and RedHat provides it through the IcedTea project: a build and integration project for OpenJDK.

References

  1. ^ a b c "Java won't curl up and die like Cobol, insists Oracle".
  2. ^ Java 8 release delayed until next year; Krill, Paul. http://www.infoworld.com/d/application-development/java-8-release-delayed-until-next-year-216797. Retrieved 06 May 2013
  3. ^ Version 1.0 press release, Sun.
  4. ^ a b Ortiz, C. Enrique; Giguere, Eric (2001). Mobile Information Device Profile for Java 2 Micro Edition: Developer's Guide (PDF). John Wiley & Sons. ISBN 978-0471034650. Retrieved May 30, 2012.
  5. ^ Version 1.1 press release, Sun.
  6. ^ Version 1.2 press release, Sun.
  7. ^ Version 1.3 press release, Sun.
  8. ^ Version 1.3 full list of changes, Sun.
  9. ^ Version 1.4 press release.
  10. ^ Version full 1.4 list of changes.
  11. ^ a b "Java™ 2 Platform 5.0 and Java for Business 5.0". Oracle Corporation. 2010. Retrieved 22 Oct 2012.
  12. ^ Version 5 release notes, Sun.
  13. ^ Oracle Java SE Support Roadmap
  14. ^ Version 1.5 press release.
  15. ^ Version 1.5 full list of changes.
  16. ^ Goetz, Brian (2006). Java Concurrency in Practice. Addison-Wesley. p. xvii. ISBN 0-321-34960-1.
  17. ^ "Java 5.0 is no longer available on Java.com". Java.com. 2009-11-03. Retrieved 2013-01-15.
  18. ^ "Install Java 6 on Mac OS X Leopard | Gephi, open source graph visualization software". Gephi.org. Retrieved 2013-01-15.
  19. ^ Java brand naming.
  20. ^ Version 6, Java webnotes, Sun.
  21. ^ Version 1.6 press release.
  22. ^ Version 1.6 full list of changes.
  23. ^ Java Lobby.
  24. ^ Mustang's HotSpot, Sun weblogs.
  25. ^ Darcy, Joe (2008-08-03). "An apt replacement". Retrieved 2009-07-29.
  26. ^ "Java SE 6 Performance White Paper". 2007-10-25. Retrieved 2010-02-04.
  27. ^ "Oracle Java SE Support Roadmap". Oracle Corporation. 19 Sep 2012. Retrieved 22 oct 2012. {{cite web}}: Check date values in: |accessdate= (help)
  28. ^ "Auto-update and update through Java Control Panel of JRE 6 will replace JRE 6 with JRE 7". Oracle Corporation. 19 Feb 2013. Retrieved 02 mar 2013. {{cite web}}: Check date values in: |accessdate= (help)
  29. ^ "Java™ SE Development Kit 6, Update 43 Release notes". Oracle Corporation. 04 Mar 2013. Retrieved 04 Mar 2013. {{cite web}}: Check date values in: |accessdate= and |date= (help)
  30. ^ Java SE 6 Update Release Notes
  31. ^ "Java SE6 Update 7 Release Notes". Oracle. Retrieved 2013-04-11.
  32. ^ Java SE 6 Update 10 Overview
  33. ^ Java Deployment Toolkit
  34. ^ Version Download and Pack200 Support
  35. ^ Nimbus
  36. ^ Release Notes for the Next-Generation Java Plug-In Technology
  37. ^ "Sun Java 6 Update 11 Available Now, Waiting on JavaFX". FindMySoft. Retrieved 2009-11-13.
  38. ^ Update Release Notes, Changes in 1.6.0_11
  39. ^ "Changes in 1.6.0_12 (6u12)". Sun Microsystems. Retrieved 2009-05-30.
  40. ^ "Changes in 1.6.0_13 (6u13)". Sun Microsystems. Retrieved 2012-03-07.
  41. ^ "Update Release Notes". Sun Microsystems. Retrieved 2009-05-30.
  42. ^ Humble, Charles (2008-05-13). "JavaOne: Garbage First". infoq.com. Retrieved 2008-09-07.
  43. ^ Coward, Dany (2008-11-12). "Java VM: Trying a new Garbage Collector for JDK 7". Retrieved 2012-01-22.
  44. ^ "Java SE 6 Update 14 Release Notes". Sun Microsystems. Retrieved 2010-01-04.
  45. ^ "Breakpoints fail to hit under JDK 1.6.0_14". Retrieved 2009-07-14.
  46. ^ "Bug ID: 6862295 JDWP threadid changes during debugging session (leading to ignored breakpoints)". Retrieved 2009-07-22.
  47. ^ "Changes in 1.6.0_15 (6u15)". Sun Microsystems.
  48. ^ "Changes in 1.6.0_16 (6u16)". Sun Microsystems. 2009-08-11. Retrieved 2009-08-11.
  49. ^ "Changes in 1.6.0_17 (6u17)". Sun Microsystems. 2009-11-04. Retrieved 2009-11-13.
  50. ^ "Changes in 1.6.0_18 (6u18)". Sun Microsystems. 2010-01-13. Retrieved 2010-01-18.
  51. ^ "Changes in 1.6.0_19 (6u19)". Sun Microsystems. 2010-03-30. Retrieved 2010-03-30.
  52. ^ "Changes in 1.6.0_20 (6u20)". Sun Microsystems. 2010-04-15. Retrieved 2010-04-15.
  53. ^ "Changes in 1.6.0_21 (6u21)". Sun Microsystems. 2010-07-07. Retrieved 2010-07-07.
  54. ^ "Changes in 1.6.0_22 (6u22)". Oracle Corporation. 2010-10-12. Retrieved 2010-10-12.
  55. ^ "Java SE 6 Update 23". Oracle Corporation. 2010-12-08. Retrieved 2010-12-08.
  56. ^ "Java SE 6 Update 24". Oracle Corporation. 2011-02-15. Retrieved 2011-02-15.
  57. ^ "Java SE 6 Update 25". Oracle Corporation. 2011-04-11. Retrieved 2011-04-24.
  58. ^ "Java SE 6 Update 26". Oracle Corporation. 2011-06-07. Retrieved 2011-06-07.
  59. ^ Oracle Java SE Critical Patch Update Advisory – June 2011
  60. ^ "Java SE 6 Update 27". Oracle Corporation. 2011-08-16. Retrieved 2011-08-16.
  61. ^ "Java SE 6 Update 29". Oracle Corporation. 2011-10-18. Retrieved 2011-10-18.
  62. ^ Oracle Java SE Critical Patch Update Advisory – October 2011
  63. ^ "Java SE 6 Update 30". Oracle Corporation. Retrieved 2011-12-13.
  64. ^ "Java SE 6 Update 31". Oracle Corporation. Retrieved 2012-02-17.
  65. ^ "Java SE 6 Update 32". Oracle Corporation. Retrieved 2012-05-03.
  66. ^ "Java SE 6 Update 33". Oracle Corporation. Retrieved 2012-06-13.
  67. ^ "Java SE 6 Update 34". Oracle Corporation. Retrieved 2012-08-15.
  68. ^ "Java SE 6 Update 35". Oracle Corporation. Retrieved 2012-08-31.
  69. ^ a b "Oracle Security Alert for CVE-2012-4681". Oracle Corporation.
  70. ^ "Java SE 6 Update 37". Oracle Corporation. Retrieved 2012-10-23.
  71. ^ "Java SE 6 Update 38". Oracle Corporation. Retrieved 2012-12-24.
  72. ^ Java SE Development Kit 6 Update 38 Bug Fixes, Oracle.com
  73. ^ "Java SE 6 Update 39". Oracle Corporation. Retrieved 2013-02-01.
  74. ^ "Java SE 6 Update 41". Oracle Corporation. Retrieved 2013-02-19.
  75. ^ "Java SE 6 Update 43". Oracle Corporation. Retrieved 2013-03-04.
  76. ^ a b "Java SE 6 Update 45". Oracle Corporation. Retrieved 2013-04-16.
  77. ^ Oracle Java SE Critical Patch Update Advisory – April 2013
  78. ^ http://java.com/en/download/faq/why_upgrade.xml
  79. ^ "Java SE Development Kit 7, Update 25 (JDK 7u25)". Oracle Corporation. Retrieved 2013-06-19. Security Baselines The security baselines for the Java Runtime Environment (JRE) at the time of the release of JDK 7u25 are specified in the following table: ... 1.6.0_51
  80. ^ a b Oracle Java SE Critical Patch Update Advisory – June 2013
  81. ^ "Java SE Development Kit 7, Update 45 (JDK 7u45)". Oracle Corporation. Retrieved 2013-10-17. Security Baselines The security baselines for the Java Runtime Environment (JRE) at the time of the release of JDK 7u25 are specified in the following table: ... 1.6.0_65
  82. ^ Oracle Critical Patch Update Advisory - October 2013
  83. ^ JDK7, Sun.
  84. ^ "Introducing Java 7 Webcast: Moving Java Forward". Oracle Corporation. July 7, 2011. Retrieved May 30, 2012.
  85. ^ "JDK 7 Schedule".
  86. ^ JDK 7 at OpenJDK
  87. ^ "JDK 7 Milestones". OpenJDK. Oracle Corporation. Retrieved May 30, 2012.
  88. ^ Miller, Alex. "Java 7". Retrieved 2008-05-30.
  89. ^ "JSR 292: Supporting Dynamically Typed Languages on the JavaTM Platform". Retrieved 25 August 2013.
  90. ^ "Compressed oops in the Hotspot JVM". OpenJDK. Retrieved 2012-08-01.
  91. ^ "Java HotSpot VM Options". Oracle. Retrieved 2013-04-11.
  92. ^ "Java Programming Language Enhancements". Download.oracle.com. Retrieved 2013-01-15.
  93. ^ "Strings in switch Statements". Download.oracle.com. Retrieved 2013-01-15.
  94. ^ "The try-with-resources Statement". Download.oracle.com. Retrieved 2013-01-15.
  95. ^ "Type Inference for Generic Instance Creation". Download.oracle.com. Retrieved 2013-01-15.
  96. ^ "Improved Compiler Warnings When Using Non-Reifiable Formal Parameters with Varargs Methods". Download.oracle.com. Retrieved 2013-01-15.
  97. ^ "Binary Literals". Download.oracle.com. Retrieved 2013-01-15.
  98. ^ "Underscores in Numeric Literals". Download.oracle.com. Retrieved 2013-01-15.
  99. ^ "Catching Multiple Exception Types and Rethrowing Exceptions with Improved Type Checking". Download.oracle.com. Retrieved 2013-01-15.
  100. ^ "Concurrency JSR-166". Retrieved 2010-04-16.
  101. ^ "File I/O (Featuring NIO.2)". Java.sun.com. 2008-03-14. Retrieved 2013-01-15.
  102. ^ "Legacy File I/O Code". Java.sun.com. 2012-02-28. Retrieved 2013-01-15.
  103. ^ "JDK 7 Features". OpenJDK. 2011-07-28. Retrieved 2013-03-15.
  104. ^ "JavaOne 2011 Keynote". Oracle.
  105. ^ Critical Patch Update table shows four dates per year
  106. ^ Java SE 7 Release Notes
  107. ^ Update Release Notes, Java SE 7 Update 1
  108. ^ Update Release Notes, Java SE 7 Update 2
  109. ^ Update Release Notes, Java SE 7 Update 3
  110. ^ Oracle Java SE Critical Patch Update Advisory – February 2012
  111. ^ Update Release Notes, Java SE 7 Update 4
  112. ^ Update Release Notes, Java SE 7 Update 5
  113. ^ Oracle Java SE Critical Patch Update Advisory – June 2012
  114. ^ Update Release Notes, Java SE 7 Update 6
  115. ^ Java SE 7 Update 6 Released
  116. ^ Update Release Notes, Java SE 7 Update 7
  117. ^ Update Release Notes, Java SE 7 Update 9
  118. ^ Java SE 7 Update 9 Released
  119. ^ Update Release Notes, Java SE 7 Update 10
  120. ^ Update Release Notes, Java SE 7 Update 11
  121. ^ "Oracle Security Alert for CVE-2013-0422". Oracle Corporation.
  122. ^ Oracle Java SE Critical Patch Update Advisory – February 2013
  123. ^ Oracle Java SE 7 U15 Release Notes
  124. ^ Oracle Java SE 7 U17 Release Notes
  125. ^ Oracle Java SE 7 U21 Release Notes
  126. ^ Oracle Java SE 7 U25 Release Notes
  127. ^ Oracle releases fixes for 40 Java holes
  128. ^ Oracle Java SE 7 U40 Release Notes
  129. ^ Oracle JDK 7u40 released - security features, hardfloat ARM, Java Mission Control and more
  130. ^ Java SE Development Kit 7, Update 45 - Update Release Notes
  131. ^ Oct 2013 CPU
  132. ^ Oracle to patch Java, other products Tuesday, ZDNet,
  133. ^ "Proposed new schedule for Java 8". 2013-04-18. Retrieved 2013-04-19.
  134. ^ "JDK 8". OpenJDK. 2013-04-18. Retrieved 2013-04-19.
  135. ^ "Java 7 Features". Sun Microsystems. 2010-02-09. Retrieved 2010-04-16.
  136. ^ Gafter, Neal (2006-08-18). "Closures for Java". Retrieved 2008-03-09.
  137. ^ Gosling, James (2008-01-31). "Closures". Retrieved 2008-03-09.
  138. ^ Reinhold, Mark (2009-11-28). "Closures for Java". Retrieved 2009-11-24.
  139. ^ "Latest development build of JDK8".
  140. ^ "Java 8: Secure the train".
  141. ^ "JavaOne: JavaFX 2, Java on iOS".
  142. ^ "Project Jigsaw". OpenJDK.
  143. ^ "Java Module-System Requirements — DRAFT 12". Oracle.
  144. ^ "Project Jigsaw delayed until Java 9". JavaWorld.
  145. ^ "Project Currency and Money".
  146. ^ "JSR 354 – Money and Currency API".
  147. ^ "New Features Proposed for JavaFX". JavaFX Roadmap. Retrieved July 11, 2013.
  148. ^ Charles Humble (Sep 18, 2013). "HSA Foundation Targeting Heterogeneous GPU-CPU Execution for Java Virtual Machines by 2015". InfoQ.
  149. ^ http://www.ibm.com/developerworks/java/jdk/linux/download.html

External links