Java version history
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 the Java 7 release, Oracle promised to go back to a 2-year release cycle.[1] However, in 2013, Oracle announced that they would delay Java 8 by one year, in order to fix bugs related to Java security.[2]
Java 8 is the only publicly supported version, while after public support periods of older versions has ended, non-public updates have been issued for Java 7 and earlier.
Release | Year |
---|---|
JDK Beta | 1995 |
JDK 1.0 | 1996 |
JDK 1.1 | 1997 |
J2SE 1.2 | 1998 |
J2SE 1.3 | 2000 |
J2SE 1.4 | 2002 |
J2SE 5.0 | 2004 |
Java SE 6 | 2006 |
Java SE 7 | 2011 |
Java SE 8 | 2014 |
JDK Alpha and Beta
The first alpha and beta Java public releases in 1995 had highly unstable APIs and ABIs. The supplied Java web browser was named WebRunner.
JDK 1.0
The first version was released on January 23, 1996 and called Oak.[3][4] The first stable version, JDK 1.0.2, is called Java 1.[4]
JDK 1.1
Major additions in the release on February 19, 1997 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
- Internationalization and Unicode support originating from Taligent[6]
J2SE 1.2
Codename Playground. The release on December 8, 1998 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:[7]
-
strictfp
keyword - the Swing graphical API was integrated into the core classes
- Sun's JVM was equipped with a JIT compiler for the first time
- Java plug-in
- Java IDL, an IDL implementation for CORBA interoperability
- Collections framework
J2SE 1.3
Codename Kestrel. The most notable changes in the May 8th, 2000 release were:[8][9]
- HotSpot JVM included (the HotSpot JVM was first released in April 1999 for the J2SE 1.2 JVM)
- RMI was modified to support optional compatibility with CORBA
- Java Naming and Directory Interface (JNDI) included in core libraries (previously available as an extension)
- Java Platform Debugger Architecture (JPDA)
- JavaSound
- Synthetic proxy classes
J2SE 1.4
Codename Merlin. The February 6th, 2002 release was the first release of the Java platform developed under the Java Community Process as JSR 59. Major changes included:[10][11]
- Language changes
- Library improvements
- Regular expressions modeled after Perl regular expressions
- Exception chaining allows an exception to encapsulate original lower-level exception
- Internet Protocol version 6 (IPv6) support
- Non-blocking IO (named New Input/Output, NIO) (specified in JSR 51)
- Logging API (specified in JSR 47)
- Image I/O API for reading and writing images in formats like JPEG and PNG
- Integrated XML parser and XSLT processor (JAXP) (specified in JSR 5 and JSR 63)
- Integrated security and cryptography extensions (JCE, JSSE, JAAS)
- Java Web Start included (Java Web Start was first released in March 2001 for J2SE 1.3) (specified in JSR 56)
- Preferences API (java.util.prefs)
Public support and security updates for Java 1.4 ended in October 2008. Paid security updates for Oracle customers ended in February 2013.[12]
J2SE 5.0
Codename Tiger. The release on September 30, 2004 was originally numbered 1.5, which is still used as the internal version number. The number was changed to "better reflect the level of maturity, stability, scalability and security of the J2SE".[13] 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 were available to paid Oracle customers until May 2015.[14]
Tiger added a number of significant new language features:[15][16]
- 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 asInteger
) (specified by JSR 201) - Enumerations: the
enum
keyword creates a typesafe, ordered list of values (such asDay.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: thefor
loop syntax is extended with special syntax for iterating over each member of either an array or anyIterable
, such as the standardCollection
classes (specified by JSR 201) - Improved semantics of execution for multi-threaded Java programs; the new Java memory model addresses issues of complexity, effectiveness, and performance of previous specifications[17]
- Static imports
There were also the following improvements to the standard libraries:
- Automatic stub generation for RMI objects
- Swing: New skinnable look and feel, called synth
- The concurrency utilities in package java.util.concurrent[18]
- Scanner class for parsing data from various input streams and buffers
Java 5 is the last release of Java to officially support the Microsoft Windows 9x line (Windows 95, Windows 98, Windows ME),[19] 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.[12]
Java 5 Update 5 (1.5.0_05) is the last release of Java to work without any problems on Windows NT 4.0.[20]
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.[21] Java 6 is also supported by 32-bit machines running Mac OS X 10.6 (Snow Leopard).
Java 5 updates
Release | Release date | Highlights |
---|---|---|
Java SE 5 | 2004-10-4 | Metadata, generic types, autoboxing and auto-unboxing of primitive types, enhanced for loop, enumerated types, static import, formatted I/O, varargs, and concurrency utilities. Improved startup time and memory footprint. Sharing of read-only data between multiple running JVMs. Remote monitoring and management. A new JVM profiling API. Programmatic generation of stack traces. Support for XML 1.1 with Namespaces, XML Schema, SAX 2.0.2, DOM Level 3, and XSLT with a fast XLSTC compiler. Unicode 4.0 support. |
Java SE 5 Update 1 | 2004-12-25 | 50 bugs have been fixed. |
Java SE 5 Update 2 | 2005-03-16 | A few crashes were fixed. The program is now compiled with better optimization. Calendar bugfixes and other bugfixes were made. |
Java SE 5 Update 3 | 2005-05-03 | This release fixes several bugs, including crashes of the Linux Mozilla plugin. |
Java SE 5 Update 4 | 2005-07-04 | With the release, J2SE support for Windows 64-bit has progressed from release candidate to final release. This version runs on AMD64/EM64T 64-bit mode machines with Windows Server 2003 x64 Editions. |
Java SE 5 Update 5 | 2005-09-18 | Several bugs were fixed and performance enhancements were made. |
Java SE 5 Update 6 | 2005-12-07 | Prior to this update, an applet or application could specify the version of the JRE on which it would run. This has changed. All applets are executed with the latest JRE version. |
Java SE 5 Update 7 | 2006-05-29 | Several bugs were fixed and performance enhancements were made. |
Java SE 5 Update 8 | 2006-08-13 | Several bugs were fixed and performance enhancements were made. |
Java SE 5 Update 9 | 2006-11-12 | This release fixes several minor regressions. |
Java SE 5 Update 10 | 2006-12-22 | An implementation of the epoll I/O event notification facility, supported by Linux 2.6, was added. Many bugs were fixed. |
Java SE 5 Update 11 | 2007-03-08 | Several bugs were fixed and performance enhancements were made. |
Java SE 5 Update 12 | 2007-06-11 | |
Java SE 5 Update 13 | 2007-10-05 | Multiple security vulnerabilities in Java Web Start relating to local file access were fixed. A security vulnerability in the JRE allowing network access restrictions to be circumvented was fixed. Several other security issues and minor bugs were fixed. |
Java SE 5 Update 14 | ||
Java SE 5 Update 15 | 2008-03-06 | Several crashes due to heap buffer out-of-bounds were fixed, along with several other bugs. New root certificates from AOL, DigiCert, and TrustCenter are now included. |
Java SE 5 Update 16 | 2008-07-23 | This release fixes several security flaws, such as DoS vulnerabilities, buffer overflows, and other bugs which could lead to crashes or which would give applets access to certain system resources. These vulnerabilities were located in Java Web Start, in the Java Management Extensions (JMX) Management Agent, and in the functions for handling XML data. |
Java SE 5 Update 17 | 2008-12-03 | The UTF-8 charset implementation was updated to handle the non-shortest form of UTF-8 byte sequences, introducing an incompatibility from previous releases. New root certificates were added. Many bugs were fixed. |
Java SE 5 Update 18 | 2009-03-25 | Several security issues were resolved. The behavior of the JNDI feature to store and retrieve Java objects in an LDAP directory was slightly modified. Five new root certificates were added. Many bugs were fixed. |
Java SE 5 Update 19 | 2009-05-29 | Support was added for several system configurations. Service Tag support was added. Many bugs were fixed, including several crashes and memory leaks. |
Java SE 5 Update 20 | 2009-08-06 | Several security vulnerabilities were resolved, such as potential system access by untrusted applets, and integer overflows in image processing and in Unpack200. Several new root certificates were added. Many other minor bugs were fixed. |
Java SE 5 Update 21 | 2009-09-09 | Many minor bugs were fixed. |
Java SE 5 Update 22 | 2009-11-04 | This release marks the End of Service Life (EOSL) for Java 5, and is its final public version. Several security vulnerabilities, reported as Sun Alerts 269868, 270474, 270475, and 270476, were fixed. Several other bugs were fixed. Furthermore, two new root certificates were added. |
Java SE 6
Codename Mustang. As of the version released on December 11, 2006, Sun replaced the name "J2SE" with Java SE and dropped the ".0" from the version number.[22] Internal numbering for developers remains 1.6.0.[23] 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:[24][25]
- 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. This is believed 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,[26][27] 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).[28]
- 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.
Java 6 reached the end of its supported life in February 2013, at which time all public updates, including security updates, were scheduled to be stopped.[29][30] Oracle released two more update to Java 6 in March and April 2013, which patched some security vulnerabilities.[31][32]
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.[33] As of January 2016 Java 6 (and earlier) versions are no longer available for download from Oracle.[34]
Release | Release date | Highlights |
---|---|---|
Java SE 6 | 2006-12-23 | This release adds many enhancements in the fields of Web services, scripting, databases, pluggable annotations, and security, as well as quality, compatibility, and stability. JConsole is now officially supported. Java DB support has been added. |
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 | Several security flaws were eliminated. New root certificates from AOL, DigiCert, and TrustCenter are now included. |
Java SE 6 Update 6 | 2008-04-16 | A workaround for the infamous Xlib/XCB locking assertion issue was introduced. A memory leak when using Kerberos authentication with LoginContext was fixed. Several other bugs were fixed. |
Java SE 6 Update 7[35] | 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 | |
Java SE 6 Update 10[36] | 2008-10-15 | HotSpot VM 11. Major changes for this update include:
|
Java SE 6 Update 11[41] | 2008-12-03 | 13 security fixes[42] |
Java SE 6 Update 12[43] | 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[44] | 2009-03-24 | 7 security fixes, JNDI store and retrieve Java objects in LDAP slightly modified, JMX Change (createMBeanunregisterMBean), 4 new root certificates added |
Java SE 6 Update 14[45] | 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.[46][47]
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.[48] Some developers have noticed an issue introduced in this release which causes debuggers to miss breakpoints seemingly randomly.[49] Sun has a corresponding bug, which is tracking the issue. The workaround applies to the Client and Server VMs.[50] 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[51] |
Java SE 6 Update 16 | 2009-08-11 | Fixed the issue introduced in update 14 which caused debuggers to miss breakpoints[52] |
Java SE 6 Update 17[53] | 2009-11-04 | Security fixes; 2 new root certificates |
Java SE 6 Update 18[54] | 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[55] | 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[56] | 2010-04-15 | 2 security fixes |
Java SE 6 Update 21[57] | 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[58] | 2010-10-12 | 29 security fixes; RFC 5746 support |
Java SE 6 Update 23[59] | 2010-12-08 | No security fixes; Hotspot VM 19; better support for right-to-left languages |
Java SE 6 Update 24[60] | 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)[61] |
Java SE 6 Update 26[62] | 2011-06-07 | 17 new security fixes;[63] last version compatible with Windows Vista SP1 |
Java SE 6 Update 27[64] | 2011-08-16 | No security fixes; certification for Firefox 5 |
Java SE 6 Update 29[65] | 2011-10-18 | 20 security fixes, various bug fixes[66] |
Java SE 6 Update 30[67] | 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[68] | 2012-02-14 | 14 security fixes and one bug fix |
JAVA SE 6 Update 32[69] | 2012-04-26 | No security fixes, various bug fixes |
Java SE 6 Update 33[70] | 2012-06-12 | 14 security fixes, improved VM configuration file loading |
Java SE 6 Update 34[71] | 2012-08-14 | No security fixes, various bug fixes |
Java SE 6 Update 35[72] | 2012-08-30 | Contains a security-in-depth fix[73] |
Java SE 6 Update 37[74] | 2012-10-16 | 30 security fixes |
Java SE 6 Update 38[75] | 2012-12-11 | Various bug fixes[76] |
Java SE 6 Update 39[77] | 2013-02-01 | 50 security fixes |
Java SE 6 Update 41[78] | 2013-02-19 | 5 security fixes |
Java SE 6 Update 43[79] | 2013-03-04 | 2 security fixes |
Java SE 6 Update 45[80] | 2013-04-16 | 42 security fixes;[81] other changes;[80] final public update.[82] As of January 2016 Java 6 (and earlier) versions are no longer available for download from Oracle.[34] |
Java SE 6 Update 51[83] | 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[84] |
Java SE 6 Update 65[85] | 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[86] |
Java SE 6 Update 71[87] | 2014-01-14 | Not available for public download; 33 fixes[88] |
Java SE 6 Update 75[89] | 2014-04-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster no. #54; 25 security fixes[90] |
Java SE 6 Update 81[91] | 2014-07-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 11 security fixes[92] |
Java SE 6 Update 85[93] | 2014-10-16 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[94] |
Java SE 6 Update 91[95] | 2015-01-21 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 15 security fixes[96] |
Java SE 6 Update 95 | 2015-04-14 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 14 security fixes[97] |
Java SE 6 Update 101 | 2015-07-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 18 security fixes[98] |
Java SE 6 Update 105 | 2015-10-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[99] |
Java SE 6 Update 111 | 2016-01-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 17 security fixes[100] |
Java SE 6 Update 113 | 2016-02-05 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[101] |
Java SE 7
Java 7 (codename Dolphin[102]) is a major update that was launched on July 7, 2011[103] and was made available for developers on July 28, 2011.[104] The development period was organized into thirteen milestones; on June 6, 2011, the last of the thirteen milestones was finished.[105][106] 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:[107]
- JVM support for dynamic languages, with the new invokedynamic bytecode under JSR-292,[108] following the prototyping work currently done on the Multi Language Virtual Machine
- Compressed 64-bit pointers[109] (available in Java 6 with -XX:+UseCompressedOops)[110]
- These small language changes (grouped under a project named Coin):[111]
- Strings in switch[112]
- Automatic resource management in try-statement[113]
- Improved type inference for generic instance creation, aka the diamond operator <>[114]
- Simplified varargs method declaration[115]
- Binary integer literals[116]
- Allowing underscores in numeric literals[117]
- Catching multiple exception types and rethrowing exceptions with improved type checking[118]
- Concurrency utilities under JSR 166[119]
- New file I/O library (defined by JSR 203) adding support for multiple file systems, file metadata and symbolic links. The new packages are java.nio.file, java.nio.file.attribute and java.nio.file.spi[120][121]
- Timsort is used to sort collections and arrays of objects 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[122]
- Enhanced library-level support for new network protocols, including SCTP and Sockets Direct Protocol
- Upstream updates to XML and Unicode
- Java Deployment Rulesets[123]
Lambda (Java's implementation of lambda functions), Jigsaw (Java's implementation of modules), and part of Coin were dropped from Java 7, and released as part of Java 8 (except for Jigsaw, which will be in Java 9).[124][125]
Java 7 was the default version to download on java.com from April 2012 until Java 8 was released.[126]
Java 7 updates
Oracle issued public updates to the Java 7 family on a quarterly basis[127] until April 2015 when the product reached the end of its support lifecycle.[34][128]
Release | Release date | Highlights |
---|---|---|
Java SE 7[129] | 2011-07-28 | Initial release; HotSpot VM 21 |
Java SE 7 Update 1[130] | 2011-10-18 | 20 security fixes, other bug fixes |
Java SE 7 Update 2[131] | 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[132] | 2012-02-14 | 14 security fixes[133] |
Java SE 7 Update 4[134] | 2012-04-26 | No security updates; HotSpot VM 23; JDK Support for Mac OS X |
Java SE 7 Update 5[135] | 2012-06-12 | 14 security fixes[136] |
Java SE 7 Update 6[137] | 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[138] |
Java SE 7 Update 7[139] | 2012-08-30 | 4 security fixes[73] |
Java SE 7 Update 9[140] | 2012-10-16 | 30 security vulnerabilities fixes[141] |
Java SE 7 Update 10[142] | 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[143] | 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;[144] the default security level for Java applets and web start applications has been increased from "Medium" to "High" |
Java SE 7 Update 13[145] | 2013-02-01 | 50 security fixes |
Java SE 7 Update 15[146] | 2013-02-19 | 5 security fixes |
Java SE 7 Update 17[147] | 2013-03-04 | 2 security fixes |
Java SE 7 Update 21[148] | 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[149] | 2013-06-18 | Multiple changes including 40 security fixes[84][150] |
Java SE 7 Update 40[151] | 2013-09-10 | New security features, hardfloat ARM, Java Mission Control and Retina Display support[152] |
Java SE 7 Update 45[153] | 2013-10-15 | 51 security fixes;[154] protections against unauthorized redistribution of Java applications; restore security prompts; JAXP changes; TimeZone.setDefault change |
Java SE 7 Update 51[155] | 2014-01-14 | 36 security fixes; block JAVA applets without manifest (like Remote console – Java Applet – IBM IMM card, HP iLO card) even if warning dialog is with sentence "will be blocked in next version"[156][157] |
Java SE 7 Update 55[158] | 2014-04-15 | 37 security fixes[159] |
Java SE 7 Update 60[160] | 2014-05-28 | 130 bug fixes[161] |
Java SE 7 Update 65[162] | 2014-07-15 | 18 bug fixes[163] |
Java SE 7 Update 67[164] | 2014-08-04 | 1 bug fix[165] |
Java SE 7 Update 71[166] | 2014-10-14 | 16 bug fixes[167] |
Java SE 7 Update 72[168] | 2014-10-14 | Same release date with Update 71 as a corresponding Patch Set Update (PSU) for Java SE 7,[169] 36 bug fixes[170] |
Java SE 7 Update 75[171] | 2015-01-20 | 12 bug fixes,[172] SSLv3 disabled by default |
Java SE 7 Update 76[173] | 2015-01-20 | Same release date with Update 75 as a corresponding Patch Set Update (PSU) for Java SE 7,[169] 97 bug fixes[174] |
Java SE 7 Update 79[175] | 2015-04-14 | 21 security fixes |
Java SE 7 Update 80[175] | 2015-04-14 | Last public release of Java 7. Same release date with Update 79 as a corresponding Patch Set Update (PSU) for Java SE 7. |
Java SE 7 Update 85 | 2015-07-15 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 25 security fixes[98] |
Java SE 7 Update 91 | 2015-10-20 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 20 security fixes[99] |
Java SE 7 Update 95 | 2016-01-19 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 8 security fixes[176] |
Java SE 7 Update 97 | 2016-02-05 | Not available publicly, only available through the Java SE Support program and in Solaris 10's Recommended Patchset Cluster; 1 security fix[177] |
Java SE 8
Java 8 was released on 18 March 2014,[178][179] and included some features that were planned for Java 7 but later deferred.[180]
Work on features was organized in terms of JDK Enhancement Proposals (JEPs).[181]
- JSR 335, JEP 126: Language-level support for lambda expressions (officially, lambda expressions; unofficially, closures) under Project Lambda[182] and default methods (virtual extension methods)[183][184][185] which allow the addition of methods to interfaces without breaking existing implementations. There was an ongoing debate in the Java community on whether to add support for lambda expressions.[186][187] Sun later declared that lambda expressions would be included in Java and asked for community input to refine the feature.[188] Supporting lambda expressions also allows the performance of functional-style operations on streams of elements, such as MapReduce-inspired transformations on collections. Default methods allow an author of an API to add new methods to an interface without breaking the old code using it. Although it was not their primary intent,[183] default methods also allow multiple inheritance of behavior (but not state).
- JSR 223, JEP 174: Project Nashorn, a JavaScript runtime which allows developers to embed JavaScript code within applications
- JSR 308, JEP 104: Annotation on Java Types[189]
- Unsigned Integer Arithmetic[190]
- JSR 337, JEP 120: Repeating annotations[191]
- JSR 310, JEP 150: Date and Time API[192]
- JEP 178: Statically-linked JNI libraries[193]
- JEP 153: Launch JavaFX applications (direct launching of JavaFX application JARs)[194]
- JEP 122: Remove the permanent generation[195]
Java 8 is not supported on Windows XP[196] but as of JDK 8 update 25, it can still be installed and run under Windows XP.[197] Previous updates of JDK 8 could be run under XP, but had to be installed after a forced installation by directly unzipping files from the installation executable.
From October 2014, Java 8 has been the default version to download from the official website.[198]
Java 8 updates
Release | Release date | Highlights |
---|---|---|
Java SE 8 | 2014-03-18 | Initial release |
Java SE 8 Update 5[199] | 2014-04-15 | Using "*" in Caller-Allowable-Codebase attribute; bug fixes |
Java SE 8 Update 11[200] | 2014-07-15 | Java Dependency Analysis Tool (jdeps); Java Control Panel option to disable sponsors; JAR file attribute – Entry-Point; JAXP processing limit property – maxElementDepth; 18 security bug fixes[201] |
Java SE 8 Update 20[202] | 2014-08-19 | |
Java SE 8 Update 25[203] | 2014-10-14 | |
Java SE 8 Update 31[204] | 2015-01-19 | 26 bug fixes. SSLv3 disabled by default. |
Java SE 8 Update 40[205] | 2015-03-03 | Added the notion of "memory pressure" to help indicate how much of system's memory is still available (low pressure = high memory, high pressure = low memory). |
Java SE 8 Update 45[206] | 2015-04-14 | |
Java SE 8 Update 51[207] | 2015-07-14 | Added support for native sandbox on Windows platforms. This feature is disabled by default. Also, 25 security fixes. |
Java SE 8 Update 60[208] | 2015-08-18 | 480 bug fixes |
Java SE 8 Update 65[209] | 2015-10-20 | 25 security fixes, 3 bug fixes |
Java SE 8 Update 66[210] | 2015-11-16 | 15 bug fixes |
Java SE 8 Update 71[211] | 2016-01-19 | 8 security fixes, 5 bug fixes[212] |
Java SE 8 Update 72 | 2016-01-19 | 8 security fixes, 5 bug fixes, several enhancements |
Java SE 8 Update 73[213] | 2016-02-03 | 1 security fix |
Java SE 8 Update 74[214] | 2016-02-03 | 1 security fix |
Java SE 9
At JavaOne 2011, Oracle discussed features they hope to have in a 2016 release of Java 9,[215] including better support for multi-gigabyte heaps, better native code integration, and a self-tuning JVM.[216] In early 2016 the release of Java 9 was rescheduled for March 2017.[217]
- JSR 294: Modularization of the JDK under Project Jigsaw (Java Module System)[125][218][219]
- JSR 354: Money and Currency API[220][221]
- JEP 222: jshell: The Java Shell (a Java REPL)[222][223]
There are plans to add automatic parallelization using OpenCL.[1][224]
Work is under way to make the Java implementation of Reactive Streams part of Java 9: Doug Lea, leader of JSR 166, has proposed[225] a new Flow class[226] that will include the interfaces currently provided by Reactive Streams.[227][228]
Java SE 10
There is speculation of introducing objects without identity (value types),[229][230] as well as moving towards 64-bit addressable arrays to support large data sets somewhere around 2018.[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 made by companies and groups such as Apache Harmony. IBM also provides Java implementations,[231] and RedHat provides it through the IcedTea project: a build and integration project for OpenJDK.
References
- 1 2 3 Clarke, Gavin (2012-03-07). "Java won't curl up and die like Cobol, insists Oracle". The Register.
- ↑ Krill, Paul (2013-04-18). "Java 8 release delayed until next year". InfoWorld. Retrieved 2013-05-06.
- ↑ Version 1.0 press release, Sun.
- 1 2 Ortiz, C. Enrique; Giguère, Éric (2001). Mobile Information Device Profile for Java 2 Micro Edition: Developer's Guide (PDF). John Wiley & Sons. ISBN 978-0471034650. Retrieved May 30, 2012.
- ↑ Version 1.1 press release, Sun.
- ↑ Taligent prepares internationalisation technology for the big time
- ↑ Version 1.2 press release, Sun.
- ↑ Version 1.3 press release, Sun.
- ↑ Version 1.3 full list of changes, Sun.
- ↑ Version 1.4 press release.
- ↑ Version full 1.4 list of changes.
- 1 2 "Java™ 2 Platform 5.0 and Java for Business 5.0". Oracle Corporation. 2010. Retrieved 22 Oct 2012.
- ↑ "Version 1.5.0 or 5.0?". Oracle.
- ↑ Oracle Java SE Support Roadmap
- ↑ Version 1.5 press release.
- ↑ Version 1.5 full list of changes.
- ↑ "JSR 133, 2.4 Why isn't this need met by existing specifications?". Oracle.
- ↑ Goetz, Brian (2006). Java Concurrency in Practice. Addison-Wesley. p. xvii. ISBN 0-321-34960-1.
- ↑ "Java 5.0 is no longer available on Java.com". Java.com. 2009-11-03. Retrieved 2013-01-15.
- ↑ Lineback, Nathan. "Misc Windows 2 – Nathan's Toasty Technology page". Retrieved 2014-09-24.
- ↑ "Install Java 6 on Mac OS X Leopard | Gephi, open source graph visualization software". Gephi.org. Retrieved 2013-01-15.
- ↑ Java brand naming.
- ↑ Version 6, Java webnotes, Sun.
- ↑ Version 1.6 press release.
- ↑ Version 1.6 full list of changes.
- ↑ Java Lobby.
- ↑ Mustang's HotSpot, Sun weblogs.
- ↑ Darcy, Joe (2008-08-03). "An apt replacement". Retrieved 2009-07-29.
- ↑ "Oracle Java SE Support Roadmap". Oracle Corporation. 19 Sep 2012. Retrieved 22 Oct 2012.
- ↑ "Auto-update and update through Java Control Panel of JRE 6 will replace JRE 6 with JRE 7". Oracle Corporation. 19 Feb 2013. Retrieved 2 Mar 2013.
- ↑ "Java™ SE Development Kit 6, Update 43 Release notes". Oracle Corporation. 4 Mar 2013. Retrieved 4 Mar 2013.
- ↑ "Java™ SE Development Kit 6, Update 45 Release notes". Oracle Corporation. 4 Mar 2013. Retrieved 4 Mar 2013.
- ↑ Java SE 6 Update Release Notes
- 1 2 3 https://java.com/en/download/faq/java_7.xml
- ↑ "Java SE6 Update 7 Release Notes". Oracle. Retrieved 2013-04-11.
- ↑ Java SE 6 Update 10 Overview
- ↑ Java Deployment Toolkit
- ↑ Version Download and Pack200 Support
- ↑ Nimbus
- ↑ Release Notes for the Next-Generation Java Plug-In Technology
- ↑ "Sun Java 6 Update 11 Available Now, Waiting on JavaFX". FindMySoft.com. Retrieved 2009-11-13.
- ↑ Update Release Notes, Changes in 1.6.0_11
- ↑ "Changes in 1.6.0_12 (6u12)". Sun Microsystems. Retrieved 2009-05-30.
- ↑ "Changes in 1.6.0_13 (6u13)". Sun Microsystems. Retrieved 2012-03-07.
- ↑ "Update Release Notes". Sun Microsystems. Retrieved 2009-05-30.
- ↑ Humble, Charles (2008-05-13). "JavaOne: Garbage First". infoq.com. Retrieved 2008-09-07.
- ↑ Coward, Dany (2008-11-12). "Java VM: Trying a new Garbage Collector for JDK 7". Retrieved 2012-01-22.
- ↑ "Java SE 6 Update 14 Release Notes". Sun Microsystems. Retrieved 2010-01-04.
- ↑ "Breakpoints fail to hit under JDK 1.6.0_14". Retrieved 2009-07-14.
- ↑ "Bug ID: 6862295 JDWP threadid changes during debugging session (leading to ignored breakpoints)". Retrieved 2009-07-22.
- ↑ "Changes in 1.6.0_15 (6u15)". Sun Microsystems.
- ↑ "Changes in 1.6.0_16 (6u16)". Sun Microsystems. 2009-08-11. Retrieved 2009-08-11.
- ↑ "Changes in 1.6.0_17 (6u17)". Sun Microsystems. 2009-11-04. Retrieved 2009-11-13.
- ↑ "Changes in 1.6.0_18 (6u18)". Sun Microsystems. 2010-01-13. Retrieved 2010-01-18.
- ↑ "Changes in 1.6.0_19 (6u19)". Sun Microsystems. 2010-03-30. Retrieved 2010-03-30.
- ↑ "Changes in 1.6.0_20 (6u20)". Sun Microsystems. 2010-04-15. Retrieved 2010-04-15.
- ↑ "Changes in 1.6.0_21 (6u21)". Sun Microsystems. 2010-07-07. Retrieved 2010-07-07.
- ↑ "Changes in 1.6.0_22 (6u22)". Oracle Corporation. 2010-10-12. Retrieved 2010-10-12.
- ↑ "Java SE 6 Update 23". Oracle Corporation. 2010-12-08. Retrieved 2010-12-08.
- ↑ "Java SE 6 Update 24". Oracle Corporation. 2011-02-15. Retrieved 2011-02-15.
- ↑ "Java SE 6 Update 25". Oracle Corporation. 2011-04-11. Retrieved 2011-04-24.
- ↑ "Java SE 6 Update 26". Oracle Corporation. 2011-06-07. Retrieved 2011-06-07.
- ↑ Oracle Java SE Critical Patch Update Advisory – June 2011
- ↑ "Java SE 6 Update 27". Oracle Corporation. 2011-08-16. Retrieved 2011-08-16.
- ↑ "Java SE 6 Update 29". Oracle Corporation. 2011-10-18. Retrieved 2011-10-18.
- ↑ Oracle Java SE Critical Patch Update Advisory – October 2011
- ↑ "Java SE 6 Update 30". Oracle Corporation. Retrieved 2011-12-13.
- ↑ "Java SE 6 Update 31". Oracle Corporation. Retrieved 2012-02-17.
- ↑ "Java SE 6 Update 32". Oracle Corporation. Retrieved 2012-05-03.
- ↑ "Java SE 6 Update 33". Oracle Corporation. Retrieved 2012-06-13.
- ↑ "Java SE 6 Update 34". Oracle Corporation. Retrieved 2012-08-15.
- ↑ "Java SE 6 Update 35". Oracle Corporation. Retrieved 2012-08-31.
- 1 2 "Oracle Security Alert for CVE-2012-4681". Oracle Corporation.
- ↑ "Java SE 6 Update 37". Oracle Corporation. Retrieved 2012-10-23.
- ↑ "Java SE 6 Update 38". Oracle Corporation. Retrieved 2012-12-24.
- ↑ Java SE Development Kit 6 Update 38 Bug Fixes, Oracle.com
- ↑ "Java SE 6 Update 39". Oracle Corporation. Retrieved 2013-02-01.
- ↑ "Java SE 6 Update 41". Oracle Corporation. Retrieved 2013-02-19.
- ↑ "Java SE 6 Update 43". Oracle Corporation. Retrieved 2013-03-04.
- 1 2 "Java SE 6 Update 45". Oracle Corporation. Retrieved 2013-04-16.
- ↑ Oracle Java SE Critical Patch Update Advisory – April 2013
- ↑ http://java.com/en/download/faq/why_upgrade.xml
- ↑ "Java SE Development Kit 7, Update 25 (JDK 7u25)". Oracle Corporation. Retrieved 2013-06-19.
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
- 1 2 Oracle Java SE Critical Patch Update Advisory – June 2013
- ↑ "Java SE Development Kit 7, Update 45 (JDK 7u45)". Oracle Corporation. Retrieved 2013-10-17.
The security baselines for the Java Runtime Environment (JRE) at the time of the release of JDK 7u45 are specified in the following table: ... 1.6.0_65
- ↑ Oracle Critical Patch Update Advisory – October 2013
- ↑ "Java SE Development Kit 7, Update 51 (JDK 7u51)". Oracle Corporation. Retrieved 2014-01-19.
The security baselines for the Java Runtime Environment (JRE) at the time of the release of JDK 7u51 are specified in the following table: ... 1.6.0_71
- ↑ "Java SE Development Kit 6 Update 71 Bug Fixes". Oracle Corporation. Retrieved 2014-01-19.
- ↑ "Java SE Development Kit 6 Update 75 Bug Fixes". Oracle Corporation. Retrieved 2014-05-11.
- ↑ Oracle Critical Patch Update Advisory – April 2014
- ↑ "Java SE Development Kit 6 Update 81 Bug Fixes". Oracle Corporation. Retrieved 2014-07-16.
- ↑ Oracle Critical Patch Update Advisory – July 2014
- ↑ "Java SE Development Kit 6 Update 85 Bug Fixes". Oracle Corporation. Retrieved 2015-01-26.
- ↑ Oracle Critical Patch Update Advisory – October 2014
- ↑ "Java SE Development Kit 6 Update 91 Bug Fixes". Oracle Corporation. Retrieved 2015-01-26.
- ↑ Oracle Critical Patch Update Advisory – January 2015
- ↑ Oracle Critical Patch Update Advisory – April 2015
- 1 2 Oracle Critical Patch Update Advisory – July 2015
- 1 2 Oracle Critical Patch Update Advisory - October 2015
- ↑ "Oracle Critical Patch Update - January 2016". www.oracle.com. Retrieved 2016-01-20.
- ↑ "Oracle Security Alert for CVE-2016-0603". Retrieved 2016-02-08.
- ↑ JDK7, Sun.
- ↑ "Introducing Java 7 Webcast: Moving Java Forward". Oracle Corporation. July 7, 2011. Retrieved May 30, 2012.
- ↑ "JDK 7 Schedule".
- ↑ JDK 7 at OpenJDK
- ↑ "JDK 7 Milestones". OpenJDK. Oracle Corporation. Retrieved May 30, 2012.
- ↑ Miller, Alex. "Java 7". Retrieved 2008-05-30.
- ↑ "JSR 292: Supporting Dynamically Typed Languages on the JavaTM Platform". Retrieved 25 August 2013.
- ↑ "Compressed oops in the Hotspot JVM". OpenJDK. Retrieved 2012-08-01.
- ↑ "Java HotSpot VM Options". Oracle. Retrieved 2013-04-11.
- ↑ "Java Programming Language Enhancements". Download.oracle.com. Retrieved 2013-01-15.
- ↑ "Strings in switch Statements". Download.oracle.com. Retrieved 2013-01-15.
- ↑ "The try-with-resources Statement". Download.oracle.com. Retrieved 2013-01-15.
- ↑ "Type Inference for Generic Instance Creation". Download.oracle.com. Retrieved 2013-01-15.
- ↑ "Improved Compiler Warnings When Using Non-Reifiable Formal Parameters with Varargs Methods". Download.oracle.com. Retrieved 2013-01-15.
- ↑ "Binary Literals". Download.oracle.com. Retrieved 2013-01-15.
- ↑ "Underscores in Numeric Literals". Download.oracle.com. Retrieved 2013-01-15.
- ↑ "Catching Multiple Exception Types and Rethrowing Exceptions with Improved Type Checking". Download.oracle.com. Retrieved 2013-01-15.
- ↑ "Concurrency JSR-166". Retrieved 2010-04-16.
- ↑ "File I/O (Featuring NIO.2)". Java.sun.com. 2008-03-14. Retrieved 2013-01-15.
- ↑ "Legacy File I/O Code". Java.sun.com. 2012-02-28. Retrieved 2013-01-15.
- ↑ "JDK 7 Features". OpenJDK. 2011-07-28. Retrieved 2013-03-15.
- ↑ https://blogs.oracle.com/java-platform-group/entry/introducing_deployment_rule_sets
- ↑ "JavaOne 2011 Keynote". Oracle.
- 1 2 "Project Jigsaw". OpenJDK.
- ↑ "Java 7 Auto-Update and Java 6". Oracle.
- ↑ Critical Patch Update table shows four dates per year
- ↑ "Oracle Java SE Support Roadmap". Oracle Corporation. 2014-12-19. Retrieved 2015-01-07.
- ↑ Java SE 7 Release Notes
- ↑ Update Release Notes, Java SE 7 Update 1
- ↑ Update Release Notes, Java SE 7 Update 2
- ↑ Update Release Notes, Java SE 7 Update 3
- ↑ Oracle Java SE Critical Patch Update Advisory – February 2012
- ↑ Update Release Notes, Java SE 7 Update 4
- ↑ Update Release Notes, Java SE 7 Update 5
- ↑ Oracle Java SE Critical Patch Update Advisory – June 2012
- ↑ Update Release Notes, Java SE 7 Update 6
- ↑ Java SE 7 Update 6 Released
- ↑ Update Release Notes, Java SE 7 Update 7
- ↑ Update Release Notes, Java SE 7 Update 9
- ↑ Java SE 7 Update 9 Released
- ↑ Update Release Notes, Java SE 7 Update 10
- ↑ Update Release Notes, Java SE 7 Update 11
- ↑ "Oracle Security Alert for CVE-2013-0422". Oracle Corporation.
- ↑ Oracle Java SE Critical Patch Update Advisory – February 2013
- ↑ Oracle Java SE 7 U15 Release Notes
- ↑ Oracle Java SE 7 U17 Release Notes
- ↑ Oracle Java SE 7 U21 Release Notes
- ↑ Oracle Java SE 7 U25 Release Notes
- ↑ Oracle releases fixes for 40 Java holes
- ↑ Oracle Java SE 7 U40 Release Notes
- ↑ Oracle JDK 7u40 released – security features, hardfloat ARM, Java Mission Control and more
- ↑ Java SE Development Kit 7, Update 45 – Update Release Notes
- ↑ Oct 2013 CPU
- ↑ Java™ SE Development Kit 7 Update 51 Release Notes
- ↑ Oracle to patch Java, other products Tuesday, ZDNet,
- ↑ Oracle Critical Patch Update Advisory – January 2014
- ↑ Java™ SE Development Kit 7 Update 55 Release Notes
- ↑ Oracle Critical Patch Update Advisory – April 2014
- ↑ Java™ SE Development Kit 7 Update 60 Release Notes
- ↑ Java™ SE Development Kit 7 Update 60 Bug Fixes
- ↑ Java™ SE Development Kit 7 Update 65 Release Notes
- ↑ Java™ SE Development Kit 7 Update 65 Bug Fixes
- ↑ Java™ SE Development Kit 7 Update 67 Release Notes
- ↑ Java™ SE Development Kit 7 Update 67 Bug Fixes
- ↑ Java™ SE Development Kit 7 Update 71 Release Notes
- ↑ Java™ SE Development Kit 7 Update 71 Bug Fixes
- ↑ Java™ SE Development Kit 7 Update 72 Release Notes
- 1 2 Java CPU and PSU Releases Explained
- ↑ Java™ SE Development Kit 7 Update 72 Bug Fixes
- ↑ Java™ SE Development Kit 7 Update 75 Release Notes
- ↑ Java™ SE Development Kit 7 Update 75 Bug Fixes
- ↑ Java™ SE Development Kit 7 Update 76 Release Notes
- ↑ Java™ SE Development Kit 7 Update 76 Bug Fixes
- 1 2
- ↑ "Oracle Critical Patch Update - January 2016". www.oracle.com. Retrieved 2016-01-20.
- ↑ "Oracle Security Alert for CVE-2016-0603". Retrieved 2016-02-08.
- ↑ "Proposed new schedule for Java 8". 2013-04-18. Retrieved 2013-04-19.
- ↑ "JDK 8". OpenJDK. 2013-04-18. Retrieved 2014-01-28.
- ↑ "JDK 8 features". OpenJDK. 2014-01-28. Retrieved 2014-01-28.
- ↑ "JSR 337". Retrieved 2014-01-30.
- ↑ "Java 7 Features". Sun Microsystems. 2010-02-09. Retrieved 2010-04-16.
- 1 2 "Interface evolution via virtual extension methods" (PDF). Brian Goetz. 2011-07-20. Retrieved 2014-03-27.
- ↑ "Lambda Expressions for the JavaTM Programming Language". Brian Goetz. 2012-10-23. Retrieved 2014-03-27.
- ↑ "The Java Tutorials: Default Methods". Oracle. Retrieved 2014-03-27.
- ↑ Gafter, Neal (2006-08-18). "Closures for Java". Retrieved 2008-03-09.
- ↑ Gosling, James (2008-01-31). "Closures". Retrieved 2008-03-09.
- ↑ Reinhold, Mark (2009-11-28). "Closures for Java". Retrieved 2009-11-24.
- ↑ http://openjdk.java.net/jeps/104
- ↑ https://blogs.oracle.com/darcy/entry/unsigned_api
- ↑ http://openjdk.java.net/jeps/120
- ↑ http://openjdk.java.net/jeps/150
- ↑ http://openjdk.java.net/jeps/178
- ↑ http://openjdk.java.net/jeps/153
- ↑ http://openjdk.java.net/jeps/122
- ↑ "Oracle JDK 8 and JRE 8 Certified System Configurations". Oracle Corporation. Retrieved 2014-04-15.
- ↑ Stahl, Henrik (2014-07-11). "Updated: The future of Java on Windows XP". Oracle Corporation. Retrieved 2014-11-11.
JDK 8 is not supported on Windows XP. Early versions of JDK 8 had known issues with the installer on Windows XP that prevented it from installing without manual intervention. This was resolved in JDK 8 Update 25. The important point here is that we can no longer provide complete guarantees for Java on Windows XP, since the OS is no longer being updated by Microsoft. We strongly recommend that users upgrade to a newer version of Windows that is still supported by Microsoft in order to maintain a stable and secure environment.
- ↑ Blog By Tori Wieldt-Oracle on Oct 27, 2014 https://blogs.oracle.com/java/entry/java_se_8_on_java
- ↑ "Java™ SE Development Kit 8, Update 5 (JDK 8u5)". oracle.com. Retrieved 2014-04-28.
- ↑ "Java™ SE Development Kit 8, Update 11 (JDK 8u11)". oracle.com. Retrieved 2014-07-16.
- ↑ "18 security bug fixes". oracle.com. Retrieved 2014-07-16.
- ↑ "Java™ SE Development Kit 8, Update 20 (JDK 8u20)". oracle.com. Retrieved 2014-08-27.
- ↑ "Java™ SE Development Kit 8, Update 25 (JDK 8u25)". oracle.com. Retrieved 2014-10-14.
- ↑ "Java™ SE Development Kit 8, Update 31 (JDK 8u31)". oracle.com. Retrieved 2015-01-21.
- ↑ "Java™ SE Development Kit 8, Update 40 (JDK 8u40)". oracle.com. Retrieved 2015-03-04.
- ↑ "Java™ SE Development Kit 8, Update 45 (JDK 8u45)". oracle.com. Retrieved 2015-04-15.
- ↑ "Java™ SE Development Kit 8, Update 51 (JDK 8u51)". oracle.com. Retrieved 2015-07-14.
- ↑ "Java™ SE Development Kit 8, Update 60 (JDK 8u60)". oracle.com. Retrieved 2015-08-18.
- ↑ "Java™ SE Development Kit 8, Update 65 (JDK 8u65)". oracle.com. Retrieved 2015-10-20.
- ↑ "Java™ SE Development Kit 8, Update 66 Release Notes". oracle.com. Retrieved 22 October 2015.
- ↑ "Java™ SE Development Kit 8, Update 71 Release Notes". oracle.com. Retrieved 20 January 2015.
- ↑ "Java™ SE Development Kit 8 Update 71 Bug Fixes". oracle.com. Retrieved 20 January 2015.
- ↑ "Java™ SE Development Kit 8, Update 73 Release Notes". oracle.com. Retrieved 6 February 2016.
- ↑ "Java™ SE Development Kit 8, Update 74 Release Notes". oracle.com. Retrieved 6 February 2016.
- ↑ "Mark your calendar: Java 9 finally has a release date".
- ↑ "JavaOne: JavaFX 2, Java on iOS".
- ↑ "Java 9 Release Date Now March, 2017".
- ↑ "Java Module-System Requirements — DRAFT 12". Oracle.
- ↑ "Project Jigsaw delayed until Java 9". JavaWorld.
- ↑ "Project Currency and Money".
- ↑ "JSR 354 – Money and Currency API".
- ↑ "jshell: The Java Shell".
- ↑ "OpenJDK: Project Kulla".
- ↑ Humble, Charles (Sep 18, 2013). "HSA Foundation Targeting Heterogeneous GPU-CPU Execution for Java Virtual Machines by 2015". InfoQ.
- ↑ jdk9 Candidate classes Flow and SubmissionPublisher
- ↑ java.util.concurrent.Flow
- ↑ Reactive Streams Releases First Stable Version for JVM
- ↑ JEP 266: More Concurrency Updates
- ↑ Rose, John; Goetz, Brian; Steele, Guy. "Value Types for Java".
- ↑ Rose, John. "JEP 169 Value Types for Java".
- ↑ https://www.ibm.com/developerworks/java/jdk/
External links
- Official Java SE Downloads
- Early history of Java
- Full list of changes for J2SE 1.3
- Full list of changes for J2SE 1.4
- Full list of changes for J2SE 5.0
- Full list of changes for Java SE 6
- Mustang development site for Java SE 6
- Java SE 7 release notes
- Sun Java Supported versions and EOL
- Downloads archive for older version of Java
|