Movatterモバイル変換


[0]ホーム

URL:


Wikipedia

Java (software platform)

This article is about a software platform. For the software package downloaded from java.com, seeJava Platform, Standard Edition. For other uses, seeJava (disambiguation).
Not to be confused withJava (programming language) orJavaScript.

Java is a set ofcomputer software and specifications that provides asoftware platform for developingapplication software and deploying it in across-platform computing environment. Java is used in a wide variety ofcomputing platforms fromembedded devices andmobile phones toenterprise servers andsupercomputers.Java applets, which are less common than standalone Java applications, were commonly run in secure,sandboxed environments to provide many features of native applications through being embedded inHTML pages.

Java (software platform)
The Java technology logo
Original author(s)James Gosling,Sun Microsystems
Developer(s)Oracle Corporation
Initial releaseJanuary 23, 1996; 29 years ago (1996-01-23)[1][2]
Stable release24.0.1 (April 15, 2025; 2 months ago (2025-04-15)[3])[±]

21.0.5LTS (October 15, 2024; 8 months ago (2024-10-15)[4])[±]
17.0.13 LTS (October 15, 2024; 8 months ago (2024-10-15)[5])[±]
11.0.25 LTS (October 15, 2024; 8 months ago (2024-10-15)[6])[±]

8u431 LTS (October 15, 2024; 8 months ago (2024-10-15)[7])[±]
Written inJava,C++,C,assembly language[8]
Operating systemMicrosoft Windows 10+,Linux,macOS,[9] and for old versions:Solaris
Platformx64,ARMv8, and for old versions:ARMv7,IA-32,SPARC (up to Java 14)(Java 8 includes32-bit support forWindows – while no longer supported freely by Oracle for commercial use)[9]
Available inEnglish, Chinese, French, German, Italian, Japanese, Korean, Portuguese, Spanish, Swedish[10]
TypeSoftware platform
LicenseDual-license:GNU General Public License version 2 with classpath exception,[11] and aproprietary license.[12]
Website
TuxGuitar, a Java-powered program

Writing in theJava programming language is the primary way to produce code that will be deployed asbyte code in aJava virtual machine (JVM); byte codecompilers are also available for other languages, includingAda,JavaScript,Kotlin (Google's preferred Android language),Python, andRuby. In addition, several languages have been designed to run natively on the JVM, includingClojure,Groovy, andScala.Java syntax borrows heavily fromC andC++, but object-oriented features are modeled afterSmalltalk andObjective-C.[13] Java eschews certainlow-level constructs such aspointers and has a very simplememory model where objects areallocated on the heap (while some implementations e.g. all currently supported by Oracle, may useescape analysis optimization to allocate on thestack instead) and all variables of object types arereferences.Memory management is handled through integrated automaticgarbage collection performed by the JVM.

Latest version

edit

The latest version isJava 23 released in September 2024, and the latestlong-term support (LTS) version is Java 21 released in September 2023, which is one of a few LTS versions still supported, down to Java 8 LTS. As an open source platform, Java has many distributors, includingAmazon,IBM,Azul Systems, andAdoptOpenJDK. Distributions include Amazon Corretto, Zulu, AdoptOpenJDK, and Liberica. Regarding Oracle, it distributes Java 8, and also makes available e.g. Java 11, both also currently supported LTS versions. Oracle (and others) "highly recommend that you uninstall older versions of Java" than Java 8,[14] because of serious risks due to unresolved security issues.[15][16][17] Since Java 9 (as well as versions 10, and 12–16, and 18–20) are no longer supported, Oracle advises its users to "immediately transition" to a supported version. Oracle released the last free-for-commercial-use public update for thelegacy Java 8 LTS in January 2019, and will continue to support Java 8 with public updates for personal use indefinitely. Oracle extended support for Java 6 ended in December 2018.[18]

Platform

edit

The Java platform is a suite of programs that facilitate developing and running programs written in theJava programming language. A Java platform includes an execution engine (called avirtual machine), a compiler and a set oflibraries; there may also be additionalservers and alternative libraries that depend on the requirements. Java platforms have been implemented for a wide variety ofhardware and operating systems with a view to enable Java programs torun identically on all of them.

The Java platform consists of several programs, each of which provides a portion of its overall capabilities. For example, theJava compiler, which converts Java source code into Java bytecode (an intermediate language for the JVM), is provided as part of theJava Development Kit (JDK). TheJava Runtime Environment (JRE), complementing the JVM with ajust-in-time (JIT) compiler, converts intermediate bytecode into native machine code on the fly. The Java platform also includes an extensive set of libraries.

The essential components in the platform are the Java language compiler, the libraries, and the runtime environment in which Java intermediate bytecode executes according to the rules laid out in the virtual machine specification.

Application domains

edit

Different platforms target different classes of device andapplication domains:

  • Java Card: A technology that allows small Java-based applications (applets) to be run securely onsmart cards and similar small-memory devices.
  • Java ME (Micro Edition): Specifies several different sets of libraries (known as profiles) for devices with limited storage, display, and power capacities. It is often used to develop applications for mobile devices, PDAs, TVset-top boxes, and printers.
  • Java SE (Standard Edition): For general-purpose use on desktop PCs, servers and similar devices.
  • Jakarta EE (Enterprise Edition): Java SE plus various APIs which are useful formulti-tierclient–serverenterprise applications.

Java SE

edit
These paragraphs are an excerpt fromJava Platform, Standard Edition.[edit]

Java Platform, Standard Edition (Java SE) is acomputing platform for development and deployment ofportable code fordesktop andserver environments.[19] Java SE was formerly known as Java 2 Platform, Standard Edition (J2SE).

The platform uses theJava programming language and is part of the Java software-platform family. Java SE defines a range of general-purposeAPIs—such asJava APIs for theJava Class Library—and also includes theJava Language Specification and theJava Virtual Machine Specification.[20]OpenJDK is the officialreference implementation since version 7.[21][22][23]

Jakarta EE

edit
This paragraph is an excerpt fromJakarta EE.[edit]
Jakarta EE, formerly Java Platform, Enterprise Edition (Java EE) and Java 2 Platform, Enterprise Edition (J2EE), is a set of specifications, extendingJava SE[24] with specifications for enterprise features such asdistributed computing andweb services.[25] Jakarta EE applications are run onreference runtimes, which can bemicroservices orapplication servers, which handle transactions, security, scalability,concurrency and management of the components they are deploying.

Java virtual machine

edit

The heart of the Java platform is the "virtual machine" that executesJava bytecode programs. This bytecode is the same no matter what hardware or operating system the program is running under. However, new versions, such as for Java 10 (and earlier), have made small changes, meaning the bytecode is in general onlyforward compatible. There is a JIT (Just In Time) compiler within theJava Virtual Machine, or JVM. The JIT compiler translates the Java bytecode into native processor instructions at run-time and caches the native code in memory during execution.

The use of bytecode as an intermediate language permits Java programs to run on any platform that has a virtual machine available. The use of a JIT compiler means that Java applications, after a short delay during loading and once they have "warmed up" by being all or mostly JIT-compiled, tend to run about as fast as native programs.[26][27][28]Since JRE version 1.2, Sun's JVM implementation has included ajust-in-time compiler instead of an interpreter.

Although Java programs arecross-platform or platform independent, the code of the Java Virtual Machines (JVM) that execute these programs is not. Every supported operating platform has its own JVM.

Java Development Kit

edit
This section is an excerpt fromJava Development Kit.[edit]

TheJava Development Kit (JDK) is a distribution ofJava technology byOracle Corporation. It implements the Java Language Specification (JLS) and the Java Virtual Machine Specification (JVMS) and provides the Standard Edition (SE) of the Java Application Programming Interface (API). It is derivative of the community drivenOpenJDK which Oracle stewards.[29] It provides software for working with Java applications. Examples of included software are the Java virtual machine, a compiler, performance monitoring tools, a debugger, and other utilities that Oracle considers useful for Java programmers.

Oracle releases the current version of the software under the Oracle No-Fee Terms and Conditions (NFTC) license. Oracle releases binaries for the x86-64 architecture for Windows, macOS, and Linux based operating systems, and for the aarch64 architecture for macOS and Linux. Previous versions supported theOracle Solaris operating system andSPARC architecture.

Oracle's primary implementation of the JVMS is known as theHotSpot (virtual machine).

Java Runtime Environment

edit

The Java Runtime Environment (JRE) released by Oracle is a freely available software distribution containing a stand-alone JVM (HotSpot), the Javastandard library (Java Class Library), a configuration tool, and—until its discontinuation in JDK 9—a browser plug-in. It is the most common Java environment installed onpersonal computers in the laptop and desktopform factor.Mobile phones includingfeature phones and earlysmartphones that ship with a JVM are most likely to include a JVM meant to run applications targetingMicro Edition of the Java platform. Meanwhile, most modern smartphones,tablet computers, and otherhandheld PCs that run Java apps are most likely to do so through support of theAndroid operating system, which includes an open source virtual machine incompatible with the JVM specification. (Instead,Google's Android development tools take Java programs as input and outputDalvik bytecode, which is the native input format for the virtual machine on Android devices.)The last Critical Path Update version of JRE with an Oracle BCL Agreement[30] was 8u201 and, the last Patch Set Update version with the same license was 8u202.[31][32] The last Oracle JRE implementation, regardless of its licensing scheme, was 9.0.4.[33] Since Java Platform SE 9, the whole platform also was grouped intomodules.[34] The modularization of Java SE implementations allows developers to bundle their applications together with all the modules used by them, instead of solely relying on the presence of a suitable Java SE implementation in the user device.[35][36][37][38]

Class libraries

edit
Main article:Java Class Library

In most modernoperating systems (OSs), a large body of reusable code is provided to simplify the programmer's job. This code is typically provided as a set ofdynamically loadable libraries that applications can call at runtime. Because the Java platform is not dependent on any specific operating system, applications cannot rely on any of the pre-existing OS libraries. Instead, the Java platform provides a comprehensive set of its own standard class libraries containing many of the same reusable functions commonly found in modern operating systems. Most of the system library is also written in Java. For instance, theSwing library paints the user interface and handles the events itself, eliminating many subtle differences between how different platforms handle components.

The Java class libraries serve three purposes within the Java platform. First, like other standard code libraries, the Java libraries provide the programmer a well-known set of functions to perform common tasks, such as maintaining lists of items or performing complex string parsing. Second, the class libraries provide an abstract interface to tasks that would normally depend heavily on the hardware and operating system. Tasks such as network access and file access are often heavily intertwined with the distinctive implementations of each platform. Thejava.net andjava.io libraries implement an abstraction layer in native OS code, then provide a standard interface for the Java applications to perform those tasks. Finally, when some underlying platform does not support all of the features a Java application expects, the class libraries work to gracefully handle the absent components, either by emulation to provide a substitute, or at least by providing a consistent way to check for the presence of a specific feature.

Languages

edit

The word "Java", alone, usually refers to Java programming language that was designed for use with the Java platform. Programming languages are typically outside of the scope of the phrase "platform", although the Java programming language was listed as a core part of the Java platform before Java 7. The language and runtime were therefore commonly considered a single unit. However, an effort was made with the Java 7 specification to more clearly treat the Java language and the Java Virtual Machine as separate entities, so that they are no longer considered a single unit.[39]

Third parties have produced manycompilers orinterpreters that target the JVM. Some of these are for existing languages, while others are for extensions to the Java language. These include:

  • BeanShell – a lightweight scripting language for Java[40] (see alsoJShell)
  • Ceylon – an object-oriented, strongly- and statically-typed programming language with an emphasis onimmutability (and is no longer maintained since 2023)
  • Clojure – a modern,dynamic, andfunctionaldialect of theLisp programming language on the Java platform
  • Gosu – a general-purpose JVM-based programming language released under the Apache License 2.0
  • Groovy – a fully Java-interoperable, Java-syntax-compatible, static and dynamic language with features from Python, Ruby, Perl, and Smalltalk
  • JRuby – aRuby interpreter
  • Jython – aPython interpreter
  • Kotlin – a programming language for aJVM (and non-JVM, for e.g. desktop and iOS) with fullJava interoperability (Google's preferred language for Android, its JVM, over Java, which is also still supported there and it previously promoted)
  • Rhino – aJavaScript interpreter
  • Scala – a multi-paradigm programming language with non-Java compatible syntax designed as a "better Java"

Similar platforms

edit

The success of Java and itswrite once, run anywhere concept has led to other similar efforts, notably the.NET Framework, appearing since 2002, which incorporates many of the successful aspects of Java. .NET was built from the ground-up to support multiple programming languages, while the Java platform was initially built to support only the Java language, although many other languages have been made for JVM since. Like Java, .NET languages compile to byte code and are executed by theCommon Language Runtime (CLR), which is similar in purpose to the JVM. Like the JVM, the CLR provides memory management through automatic garbage collection, and allows .NET byte code to run on multiple operating systems.

.NET included a Java-like language first namedJ++, then calledVisual J# that was incompatible with the Java specification. It was discontinued 2007, and support for it ended in 2015.

Performance

edit
Main article:Java performance

The JVM specification gives a lot of leeway to implementors regarding the implementation details. Since Java 1.3, JRE from Oracle contains a JVM called HotSpot. It has been designed to be a high-performance JVM.

To speed-up code execution, HotSpot relies on just-in-time compilation. To speed-up object allocation and garbage collection, HotSpot uses generational heap.

Generational heap

edit

TheJava virtual machine heap is the area of memory used by the JVM fordynamic memory allocation.[41]

In HotSpot the heap is divided intogenerations:

  • Theyoung generation stores short-livedobjects that are created and immediately garbage collected.
  • Objects that persist longer are moved to theold generation (also called thetenured generation). This memory is subdivided into (two) Survivors spaces where the objects that survived the first and next garbage collections are stored.

Thepermanent generation (orpermgen) was used for class definitions and associated metadata prior to Java 8. Permanent generation was not part of the heap.[42][43] Thepermanent generation was removed from Java 8.[44]

Originally there was no permanent generation, and objects and classes were stored together in the same area. But as class unloading occurs much more rarely than objects are collected, moving class structures to a specific area allowed significant performance improvements.[42]

Security

edit

The Java JRE is installed on a large number of computers. End users with an out-of-date version of JRE therefore are vulnerable to many known attacks. This led to the widely shared belief that Java is inherently insecure.[45] Since Java 1.7, Oracle's JRE for Windows includes automatic update functionality.

Before the discontinuation of the Java browser plug-in, any web page might have potentially run a Java applet, which provided an easily accessibleattack surface to malicious web sites. In 2013 Kaspersky Labs reported that the Java plug-in was the method of choice for computer criminals. Java exploits are included in many exploit packs that hackers deploy onto hacked web sites.[46] Java applets were removed in Java 11, released on September 25, 2018.

Java versions

edit
Java
version
YearChanges
242025Final Release Candidate for Java 24 has been released.
232024
212023A Long-Term Support (LTS) release
172021An LTS release, has several enhancements, provides pattern matching forswitch statements andsealed classes
162021Introducedrecord classes,pattern matching, andsealed classes for enhanced data modelling abilities
152020Introducedtext blocks,sealed classes as preview features, enhancing string and class handling
142020Introduced new featuresrecord classes andpattern matching forinstanceof as preview features
132019Included enhancements,text blocks, reimplementation of legacySocket API
122019Introducedswitch expressions, newShenandoah garbage collector
112018An LTS release, introduced newHTTP Client, removed Java EE and CORBA modules
102018IntroducedLocal-Variable Type Inference (var), allows declaring local variables without specifying type
92017IntroducedJava Platform Module System (JPMS) for modularizing applications,JShell interactive Java REPL
82014Major release, introducedLambda Expressions, newDate and Time API for better productivity
72011Introducedtry-with-resources,Switch on String,Diamond Operator, included expanded exception handling, new file I/O library (NIO.2)
62006IntroducedScripting Language Support (JSR 223),Web Service Enhancements, provided JDBC 4.0 with SQL XML support
52004Significant release, includedGenerics, anEnhanced for Loop,Autoboxing/Unboxing,Static Import,Varargs,Enumerations,Annotations
42002IntroducedRegular Expressions,Exception Chaining, new set of I/O APIs named NIO (New Input/Output), newLogging API
32000Included new Sun JVM namedHotSpot, introducedJava Naming and Directory Interface (JNDI),Java Platform Debugger Architecture (JPDA)
21998IntroducedCollections Framework,Java String memory map for constants, aJust In Time (JIT) compiler, andSwing API for GUIs
1.11997IntroducedInner Classes,Reflection,Java Beans,JDBC API for database access
1.01996First version of Java programming language, introduced object-oriented programming and bytecode in Java, which made Java cross-platform

History

edit
 
James Gosling

The Java platform and language began as an internal project atSun Microsystems in December 1990, providing an alternative to the C++/C programming languages. EngineerPatrick Naughton had become increasingly frustrated with the state of Sun's C++ and Capplication programming interfaces (APIs) and tools, as well as with the way theNeWS project was handled by the organization. Naughton informedScott McNealy about his plan of leaving Sun and moving toNeXT; McNealy asked him to pretend he was God and send him an e-mail explaining how to fix the company. Naughton envisioned the creation of a small team that could work autonomously without the bureaucracy that was stalling other Sun projects. McNealy forwarded the message to other important people at Sun, and theStealth Project started.[47]

The Stealth Project was soon renamed to theGreen Project, withJames Gosling and Mike Sheridan joining Naughton. Together with other engineers, they began work in a small office onSand Hill Road inMenlo Park, California. They aimed to develop new technology for programming next-generation smart appliances, which Sun expected to offer major new opportunities.[48]

The team originally considered using C++, but rejected it for several reasons. Because they were developing anembedded system with limited resources, they decided that C++ needed too much memory and that its complexity led to developer errors. The language's lack ofgarbage collection meant that programmers had to manually manage system memory, a challenging and error-prone task. The team also worried about the C++ language's lack of portable facilities for security,distributed programming, andthreading. Finally, they wanted a platform that would port easily to all types of devices.

Bill Joy had envisioned a new language combiningMesa and C. In a paper calledFurther, he proposed to Sun that its engineers should produce anobject-oriented environment based on C++. Initially, Gosling attempted to modify and extend C++ (a proposed development that he referred to as "C++ ++ --") but soon abandoned that in favor of creating a new language, which he calledOak, after the tree that stood just outside his office.[49]

By the summer of 1992, the team could demonstrate portions of the new platform, including the GreenOS, the Oak language, the libraries, and the hardware. Their first demonstration, on September 3, 1992, focused on building apersonal digital assistant (PDA) device namedStar7[1] that had a graphical interface and a smart agent called "Duke" to assist the user. In November of that year, the Green Project was spun off to becomeFirstperson, a wholly owned subsidiary of Sun Microsystems, and the team relocated toPalo Alto, California.[50] The Firstperson team had an interest in building highly interactive devices, and whenTime Warner issued arequest for proposal (RFP) for aset-top box, Firstperson changed their target and responded with a proposal for a set-top box platform. However, thecable industry felt that their platform gave too much control to the user, so Firstperson lost their bid toSGI. An additional deal withThe 3DO Company for a set-top box also failed to materialize. Unable to generate interest within the television industry, the company was rolled back into Sun.

Java meets the Web

edit
 
John Gage

In June and July 1994 – after three days of brainstorming withJohn Gage (the Director of Science for Sun), Gosling, Joy, Naughton,Wayne Rosing, andEric Schmidt – the team re-targeted the platform for theWorld Wide Web. They felt that with the advent of graphicalweb browsers likeMosaic the Internet could evolve into the same highly interactive medium that they had envisioned for cable TV. As a prototype, Naughton wrote a small browser, WebRunner (named after the movieBlade Runner), renamedHotJava[48] in 1995.

Sun renamed the Oak language toJava after atrademark search revealed thatOak Technology used the nameOak.[51] Sun priced Java licenses below cost to gain market share.[52] Although Java 1.0a became available for download in 1994, the first public release of Java, Java 1.0a2 with the HotJava browser, came on May 23, 1995, announced by Gage at the SunWorld conference. Accompanying Gage's announcement,Marc Andreessen, Executive Vice President ofNetscape Communications Corporation, unexpectedly announced that Netscape browsers would include Java support. On January 9, 1996, Sun Microsystems formed the JavaSoft group to develop the technology.[53]

While the so-called Java applets for web browsers no longer are the most popular use of Java (with it e.g. more used server-side) or the most popular way to run code client-side (JavaScript took over as more popular), it still is possible to run Java (or other JVM languages such as Kotlin) in web browsers, even after JVM support has been dropped from them, using e.g.TeaVM.

GNU General Public License

edit

On November 13, 2006, Sun Microsystems made the bulk of its implementation of Java available under theGNU General Public License (GPL).[54][55]

Version history

edit

The Java language has undergone several changes since the release of JDK (Java Development Kit) 1.0 on January 23, 1996, as well as numerous additions of classes and packages to the standardlibrary. Since J2SE 1.4 theJava Community Process (JCP) has governed the evolution of the Java Language. The JCP usesJava Specification Requests (JSRs) to propose and specify additions and changes to the Java platform. TheJava Language Specification (JLS) specifies the language; changes to the JLS are managed under JSR 901.[56]

Sun releasedJDK 1.1 on February 19, 1997. Major additions included an extensive retooling of theAbstract Window Toolkit (AWT) event model,inner classes added to the language,JavaBeans, andJava Database Connectivity (JDBC).

J2SE 1.2 (December 8, 1998) – CodenamePlayground. This and subsequent releases through J2SE 5.0 were rebrandedJava 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). Major additions includedreflection, acollections framework,Java IDL (aninterface description language implementation forCORBA interoperability), and the integration of theSwing graphical API into the core classes. AJava Plug-in was released, and Sun's JVM was equipped with aJIT compiler for the first time.

J2SE 1.3 (May 8, 2000) – CodenameKestrel. Notable changes included the bundling of theHotSpot JVM (the HotSpot JVM was first released in April, 1999 for the J2SE 1.2 JVM),JavaSound,Java Naming and Directory Interface (JNDI) andJava Platform Debugger Architecture (JPDA).

J2SE 1.4 (February 6, 2002) – CodenameMerlin. This became the first release of the Java platform developed under the Java Community Process as JSR 59.[57] Major changes includedregular expressions modeled afterPerl,exception chaining, an integratedXML parser andXSLT processor (JAXP), andJava Web Start.

J2SE 5.0 (September 30, 2004) – CodenameTiger. It was originally numbered 1.5, which is still used as the internal version number.[58] Developed under JSR 176, Tiger added several significant new language features including thefor-each loop,generics,autoboxing andvar-args.[59]

Java SE 6 (December 11, 2006) – CodenameMustang. It was bundled with a database manager and facilitates the use of scripting languages with the JVM (such asJavaScript usingMozilla'sRhino engine). As of this version, Sun replaced the name "J2SE" withJava SE and dropped the ".0" from the version number.[60] Other major changes include support for pluggableannotations (JSR 269), manyGUI improvements, including native UI enhancements to support the look and feel ofWindows Vista, and improvements to theJava Platform Debugger Architecture (JPDA) & JVM Tool Interface for better monitoring and troubleshooting.

Java SE 7 (July 28, 2011) – CodenameDolphin. This version developed under JSR 336.[61] It added many small language changes including strings in switch, try-with-resources andtype inference for generic instance creation. The JVM was extended with support for dynamic languages, while the class library was extended among others with a join/fork framework,[62] an improved new file I/O library and support for new network protocols such asSCTP. Java 7 Update 76 was released in January 2015, with expiration date April 14, 2015.[63]

In June 2016, after the last public update of Java 7,[64] "remotely exploitable" security bugs in Java 6, 7, and 8 were announced.[16]

Java SE 8 (March 18, 2014) – CodenameKenai. Notable changes include language-level support forlambda expressions (closures) and default methods, the Project Nashorn JavaScript runtime, a new Date and Time API inspired by Joda Time, and the removal of PermGen. This version is not officially supported on theWindows XP platform,[65] but is known to work there. Thus, due to the end of Java 7's lifecycle it is the recommended version for XP users. Previously, only an unofficial manual installation method had been described for Windows XP SP3. It refers to JDK8, the developing platform for Java that also includes a fully functioningJava Runtime Environment.[66] Java 8 is supported on Windows Server 2008 R2 SP1, Windows Vista SP2 and Windows 7 SP1, Ubuntu 12.04 LTS and higher (and some other OSes).[67]

Java SE 9 and10 have higher system requirements, i.e. Windows 7 or Server 2012 (and web browser minimum certified is upped toInternet Explorer 11 or other web browsers), and Oracle dropped32-bit compatibility for all platforms, i.e. only Oracle's "64-bit Java virtual machines (JVMs) are certified".[68]

Java SE 11 LTS was released September 2018, the firstLTS release since therapid release model was adopted starting with version 9. For the first time, OpenJDK 11 represents the complete source code for the Java platform under the GNU General Public License, and while Oracle still dual-licenses it with an optional proprietary license, there are no code differences nor modules unique to the proprietary-licensed version.[69] Java 11 features include two new garbage collector implementations, Flight Recorder to debug deep issues, a new HTTP client includingWebSocket support.[70]

Java SE 12 was released March 2019.[71]

Java SE 13 was released September 2019.[72]

Java SE 14 was released March 2020.[73]

Java SE 15 was released September 2020.

Java SE 16 was released March 2021.

Java SE 17 LTS was released September 2021.

Java SE 18 was released March 2022.

Java SE 19 was released September 2022.

Java SE 20 was released March 2023.

Java SE 21 LTS was released September 2023.

Java SE 22 was released March 2024.

In addition to language changes, significant 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.0. Entire new APIs, such asSwing andJava 2D, have evolved, and many of the original JDK 1.0 classes and methods have beendeprecated (thereof some "terminally deprecated"), e.g. related to finalization.[74]

At least one very rarely-used API (for threading) has been removed from Java 22.[75][76]

Usage

edit

Desktop use

edit
 
A Java program running on aWindows Vista desktop (supported by Java 8, but not officially by later versions, such as Java 11) desktop computer

Current Java is supported on 64-bit Windows 10 (and Server 2016) and later, 64-bit macOS 13.x and later, and 64-bit Linux (e.g. Oracle Enterprise Linux). Others are not supported by Oracle (for building, but may be by IBM, SAP etc.), though are known to work e.g. AIX, Ubuntu, RHEL, and Alphine/musl. 32-bit Windows support is deprecated since Java 22 (and 32-bit JVM no longer builds without non-default options).

According to Oracle in 2010, the Java Runtime Environment was found on over 850 million PCs.[77]Microsoft has not bundled aJava Runtime Environment (JRE) with itsoperating systems since Sun Microsystems sued Microsoft for adding Windows-specific classes to the bundled Java runtime environment, and for making the new classes available throughVisual J++.[citation needed] Apple no longer includes a Java runtime withOS X as ofversion 10.7, but the system prompts the user to download and install it the first time an application requiring the JRE is launched.[citation needed] ManyLinux distributions include theOpenJDK runtime as the default virtual machine, negating the need to download the proprietary Oracle JRE.[78]

Some Java applications are in fairly widespread desktop use, including theNetBeans,Eclipse andJetBrains[79]integrated development environments, and file sharing clients such asLimeWire andVuze. Java is also used in theMATLAB mathematics programming environment, both for rendering theuser interface and as part of the core system. Java provides cross platform user interface for some high end collaborative applications such asLotus Notes.

Oracle plans to first deprecate the separately installable Java browser plugin from the Java Runtime Environment in JDK 9 then remove it completely from a future release, forcing web developers to use an alternative technology.[80]

Mascot

edit
 

Duke is Java'smascot.[81]

When Sun announced thatJava SE andJava ME would be released under afree software license (theGNU General Public License), they released the Duke graphics under the freeBSD license at the same time.[82] A new Duke personality is created every year.[83] For example, in July 2011 "Future Tech Duke" included a bigger nose, a jetpack, and blue wings.[84]

Licensing

edit

The source code for Sun's implementations of Java (i.e. the de facto reference implementation) has been available for some time, but until recently,[85] the license terms severely restricted what could be done with it without signing (and generally paying for) a contract with Sun. As such these terms did not satisfy the requirements of either theOpen Source Initiative or theFree Software Foundation to be considered open source or free software, and Sun Java was therefore a proprietary platform.[86]

While several third-party projects (e.g.GNU Classpath andApache Harmony) createdfree software partial Java implementations, the large size of the Sun libraries combined with the use ofclean room methods meant that their implementations of the Java libraries (the compiler and VM are comparatively small and well defined) were incomplete and not fully compatible. These implementations also tended to be far less optimized than Sun's.[citation needed]

Free software

edit
See also:OpenJDK
 
Jonathan I. Schwartz

Sun announced inJavaOne 2006 that Java would becomefree andopen-source software,[87] and on October 25, 2006, at the Oracle OpenWorld conference,Jonathan I. Schwartz said that the company was set to announce the release of the coreJava Platform as free and open source software within 30 to 60 days.[88]

Sun released the Java HotSpot virtual machine and compiler as free software under theGNU General Public License on November 13, 2006, with a promise that the rest of the JDK (that includes the JRE) would be placed under the GPL by March 2007 ("except for a few components that Sun does not have the right to publish in distributable source form under the GPL").[89] According toRichard Stallman, this would mean an end to the "Java trap".[90]Mark Shuttleworth called the initial press announcement, "A real milestone for thefree software community".[91]

Sun released thesource code of theClass library underGPL on May 8, 2007, except some limited parts that were licensed by Sun from third parties who did not want their code to be released under a free software and open-source license.[92] Some of the encumbered parts turned out to be fairly key parts of the platform such as font rendering and 2D rasterising, but these were released as open-source later by Sun (seeOpenJDK Class library).

Sun's goal was to replace the parts that remain proprietary and closed-source with alternative implementations and make the class library completely free and open source. In the meantime, a third-party project calledIcedTea created a completely free and highly usable JDK by replacing encumbered code with either stubs or code fromGNU Classpath. However OpenJDK has since become buildable without the encumbered parts (from OpenJDK 6 b10[93]) and has become the default runtime environment for most Linux distributions.[94][95][96][97]

In June 2008, it was announced thatIcedTea6 (as the packaged version of OpenJDK onFedora 9) has passed theTechnology Compatibility Kit tests and can claim to be a fully compatible Java 6 implementation.[98]

Because OpenJDK is under the GPL, it is possible to redistribute a custom version of the JRE directly with software applications,[99][100] rather than requiring the enduser (or their sysadmin) to download and install the correct version of the proprietary Oracle JRE onto each of their systems themselves.

Criticism

edit
Main article:Criticism of Java

In most cases, Java support is unnecessary in Web browsers, and security experts recommend that it not be run in a browser unless absolutely necessary.[101] It was suggested[by whom?] that, if Java is required by a few Web sites, users should have a separate browser installation specifically for those sites.[citation needed]

Generics

edit
Further information:Generics in Java

Whengenerics were added to Java 5.0, there was already a large framework of classes (many of which were alreadydeprecated), so generics were chosen to be implemented usingerasure to allow formigration compatibility and re-use of these existing classes. This limited the features that could be provided by this addition as compared to some other languages.[102][103] The addition of type wildcards made Java unsound.[104]

Unsigned integer types

edit

Java lacks nativeunsigned integer types. Unsigned data are often generated from programs written inC and the lack of these types prevents direct data interchange between C and Java. Unsigned large numbers are also used in many numeric processing fields, including cryptography, which can make Java less convenient to use for these tasks.[105]Although it is possible to partially circumvent this problem with conversion code and using larger data types, it makes using Java cumbersome for handling the unsigned data. While a 32-bit signed integer may be used to hold a 16-bit unsigned value with relative ease, a 32-bit unsigned value would require a 64-bit signed integer. Additionally, a 64-bit unsigned value cannot be stored using any integer type in Java because no type larger than 64 bits exists in the Java language. If abstracted using functions, function calls become necessary for many operations which are native to some other languages. Alternatively, it is possible to use Java's signed integers to emulate unsigned integers of the same size, but this requires detailed knowledge of complex bitwise operations.[106]

Floating-point arithmetic

edit

While Java'sfloating-point arithmetic is largely based onIEEE 754 (Standard for Binary Floating-Point Arithmetic), certain features are not supported even when using thestrictfp modifier, such as Exception Flags and Directed Roundings – capabilities mandated by IEEE Standard 754. Additionally, the extended-precision floating-point types permitted in 754 and present in many processors are not permitted in Java.[107][108]

Performance

edit
Further information:Java performance

In the early days of Java (before theHotSpot VM was implemented in Java 1.3 in 2000) there were some criticisms of performance.Benchmarks typically reported Java as being about 50% slower than C (a language which compiles to native code).[109][110][111]

Java's performance has improved substantially since the early versions.[26] Performance ofJIT compilers relative to native compilers has in some optimized tests been shown to be quite similar.[26][27][28]

Java bytecode can either be interpreted at run time by a virtual machine, or it can be compiled at load time or runtime into native code which runs directly on the computer's hardware. Interpretation is slower than native execution, and compilation at load time or runtime has an initial performance penalty for the compilation. Modern performant JVM implementations all use the compilation approach, so after the initial startup time the performance is equivalent to native code.

Security

edit
Further information:Java security

The Java platform provides a security architecture[112] which is designed to allow the user to run untrusted bytecode in a "sandboxed" manner to protect against malicious or poorly written software. This "sandboxing" feature is intended to protect the user by restricting access to certain platform features and APIs which could be exploited bymalware, such as accessing the local filesystem, running arbitrary commands, or accessing communication networks.

In recent years, researchers have discovered numerous security flaws in some widely used Java implementations, including Oracle's, which allow untrusted code to bypass the sandboxing mechanism, exposing users to malicious attacks. These flaws affect only Java applications which execute arbitrary untrusted bytecode, such as web browser plug-ins that run Java applets downloaded from public websites. Applications where the user trusts, and has full control over, all code that is being executed are unaffected.

On August 31, 2012, Java 6 and 7 (both supported back then) on Microsoft Windows,OS X, and Linux were found to have a serious security flaw that allowed aremote exploit to take place by simply loading a malicious web page.[113]Java 5 was later found to be flawed as well.[114]

On January 10, 2013, three computer specialists spoke out against Java, tellingReuters that it was not secure and that people should disable Java. Jaime Blasco, Labs Manager with AlienVault Labs, stated that "Java is a mess. It's not secure. You have to disable it."[115]This vulnerability affectsJava 7 and it is unclear if it affectsJava 6, so it is suggested that consumers disable it.[116][117] Security alerts from Oracle announce schedules of critical security-related patches to Java.[118]

On January 14, 2013, security experts said that the update still failed to protect PCs from attack.[119] This exploit hole prompted a response from theUnited States Department of Homeland Security encouraging users to disable or uninstall Java.[17] Apple blacklisted Java in limited order for all computers running itsOS X operating system through a virus protection program.[120]

In 2014 and responding to then-recent Java security and vulnerability issues, security bloggerBrian Krebs has called for users to remove at least the Java browser plugin and also the entire software. "I look forward to a world without the Java plugin (and to not having to remind readers about quarterly patch updates) but it will probably be years before various versions of this plugin are mostly removed from end-user systems worldwide."[121] "Once promising, it has outlived its usefulness in the browser, and has become a nightmare that delights cyber-criminals at the expense of computer users."[122] "I think everyone should uninstall Java from all their PCs and Macs, and then think carefully about whether they need to add it back. If you are a typical home user, you can probably do without it. If you are a business user, you may not have a choice."[123]

Adware

edit

The Oracle-distributed Java runtime environment has a history of bundling sponsored software to be installed by default during installation and during the updates which roll out every month or so. This includes the "Ask.com toolbar" that will redirect browser searches to ads and "McAfee Security Scan Plus".[124] These offers can be blocked through a setting in the Java Control Panel, although this is not obvious. This setting is located under the "Advanced" tab in the Java Control Panel, under the "Miscellaneous" heading, where the option is labelled as an option to suppress "sponsor offers".

Update system

edit

Java has yet to release an automatic updater that does not require user intervention and administrative rights[125] unlike Google Chrome[126] and Flash player.[127]

See also

edit

References

edit
  1. ^"JavaSoft ships Java 1.0" (Press release). Archived fromthe original on February 5, 2008. RetrievedFebruary 9, 2016.
  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. RetrievedMay 30, 2012.
  3. ^"Java™ SE Development Kit 24, 24.0.1 Release Notes".Oracle Corporation. RetrievedJune 9, 2025.
  4. ^"Java™ SE Development Kit 21, 21.0.5 Release Notes".Oracle Corporation. RetrievedOctober 16, 2024.
  5. ^"Java™ SE Development Kit 17, 17.0.13 Release Notes".Oracle Corporation. RetrievedOctober 16, 2024.
  6. ^"Java™ SE Development Kit 11, 11.0.25 Release Notes".Oracle Corporation. RetrievedOctober 16, 2024.
  7. ^"Java™ SE Development Kit 8, Update 431 Release Notes".Oracle Corporation. RetrievedOctober 16, 2024.
  8. ^"HotSpot Group". Openjdk.java.net. RetrievedFebruary 9, 2016.
  9. ^ab"Oracle JDK 8 and JRE 8 Certified System Configurations Contents".Oracle.com. April 8, 2014. RetrievedFebruary 9, 2016.
  10. ^"Java SE 7 Supported Locales". Oracle.com. RetrievedFebruary 9, 2016.
  11. ^"OpenJDK: GPLv2 + Classpath Exception". Openjdk.java.net. April 1, 1989. RetrievedFebruary 9, 2016.
  12. ^"BCL For Java SE". Oracle.com. April 2, 2013. RetrievedFebruary 9, 2016.
  13. ^Naughton, Patrick."Java Was Strongly Influenced by Objective-C".Virtual School. Archived fromthe original on August 13, 2012.
  14. ^"Why should I uninstall older versions of Java from my system?".www.java.com.Archived from the original on February 12, 2018. RetrievedFebruary 6, 2018.
  15. ^"Why should I uninstall older versions of Java from my system?". Oracle. RetrievedSeptember 9, 2016.
  16. ^ab"Oracle Critical Patch Update - July 2016".www.oracle.com.
  17. ^abWhittaker, Zack (January 11, 2013)."Homeland Security warns to disable Java amid zero-day flaw". ZDNet. RetrievedFebruary 9, 2016.
  18. ^Alexander, Christopher."Java SE 6 Advanced".www.oracle.com. RetrievedMay 20, 2018.
  19. ^"Java SE Overview".Oracle Corporation. RetrievedFebruary 26, 2017.
  20. ^"Java SE 6 Release Contents".Oracle Corporation and/or its affiliates. RetrievedJanuary 1, 2013.
  21. ^Moving to OpenJDK as the official Java SE 7 Reference Implementation
  22. ^Java Platform, Standard Edition 7 Reference Implementations
  23. ^"Java Platform, Standard Edition 8 Reference Implementations". Archived fromthe original on November 21, 2015.
  24. ^"Differences between Java EE and Java SE - Your First Cup: An Introduction to the Java EE Platform". Docs.oracle.com. April 1, 2012. RetrievedJuly 18, 2012.
  25. ^"Java EE Overview".Oracle Corporation. RetrievedFebruary 26, 2017.
  26. ^abcLewis, J. P.; Neumann, Ulrich."Performance of Java versus C++". Graphics and Immersive Technology Lab,University of Southern California.
  27. ^ab"The Java Faster than C++ Benchmark". Kano.net. November 14, 2003. RetrievedFebruary 9, 2016.
  28. ^abFreeTTS – A Performance Case StudyArchived 2009-03-25 at theWayback Machine, Willie Walker, Paul Lamere, Philip Kwok
  29. ^"OpenJDK FAQ".OpenJDK. Archived fromthe original on December 7, 2021. RetrievedOctober 23, 2021.
  30. ^"BCL for Java SE". Archived fromthe original on August 14, 2022. RetrievedAugust 14, 2022.
  31. ^"Java CPU and PSU Releases Explained". Archived fromthe original on November 3, 2014.
  32. ^"Archived copy". Archived fromthe original on August 14, 2022. RetrievedAugust 14, 2022.{{cite web}}: CS1 maint: archived copy as title (link)
  33. ^"Archived copy". Archived fromthe original on August 10, 2022. RetrievedAugust 14, 2022.{{cite web}}: CS1 maint: archived copy as title (link)
  34. ^"Understanding Java 9 Modules". Archived fromthe original on August 14, 2022. RetrievedAugust 14, 2022.
  35. ^"Java Modules".
  36. ^"Java 9 Structural Changes in the JDK and JRE". October 30, 2017.
  37. ^"IBM Developer".
  38. ^"A Guide to Java 9 Modularity | Baeldung". April 18, 2018.
  39. ^"Chapter 1. Introduction".docs.oracle.com.
  40. ^www.beanshell.org
  41. ^"Frequently Asked Questions about Garbage Collection in the Hotspot Java Virtual Machine".Sun Microsystems. February 6, 2003. RetrievedFebruary 7, 2009.
  42. ^abMasamitsu, Jon (November 28, 2006)."Presenting the Permanent Generation". Archived fromthe original on August 25, 2016. RetrievedFebruary 7, 2009.
  43. ^Nutter, Charles (September 11, 2008)."A First Taste of InvokeDynamic". RetrievedFebruary 7, 2009.
  44. ^"JEP 122: Remove the Permanent Generation".Oracle Corporation. December 4, 2012. RetrievedMarch 23, 2014.
  45. ^"What Is Java, Is It Insecure, and Should I Use It?". Lifehacker.com. January 14, 2013. RetrievedJune 26, 2015.
  46. ^"Is there any protection against Java exploits? | Kaspersky Lab". Kaspersky.com. September 9, 2013. Archived fromthe original on April 4, 2015. RetrievedJune 26, 2015.
  47. ^Southwick, Karen (1999).High Noon: the inside story of Scott McNealy and the rise of Sun Microsystems. New York [u.a.]: Wiley. pp. 120–122.ISBN 0471297135.
  48. ^abByous, Jon (April 2003)."Java Technology: The Early Years".Sun Microsystems. Archived fromthe original on May 30, 2008. RetrievedAugust 2, 2009.
  49. ^Southwick, Karen (1999).High Noon: the inside story of Scott McNealy and the rise of Sun Microsystems. New York [u.a.]: Wiley. p. 124.ISBN 0471297135.
  50. ^Walrath, Kathy (December 21, 2001)."Foreword".Sun Microsystems. RetrievedAugust 2, 2009.
  51. ^Murphy, Kieron (4 October 1996)."So why did they decide to call it Java?".JavaWorld. Retrieved2020-07-15.'The lawyers had told us that we couldn't use the name "OAK" because [it was already trademarked by] Oak Technologies,' said Frank Yellin, a senior engineer at Sun. 'So a brainstorming session was held to come up with ideas for a new name.'
  52. ^Bank, David (December 1, 1995)."The Java Saga".Wired. RetrievedOctober 4, 2022.'It's priced below our cost,' Schmidt says. 'This loses money in the licensing business for the foreseeable future. It's a strategic investment in market share.'
  53. ^"Sun Microsystems announces formation of JavaSoft" (Press release). Sun Microsystems. 9 January 1996. Archived fromthe original on 2008-02-10.
  54. ^"Sun Opens Java". Sun Microsystems. November 13, 2006. Archived fromthe original on May 13, 2008.
  55. ^O'Hair, Kelly (December 2010)."OpenJDK7 and OpenJDK6 Binary Plugs Logic Removed".Oracle Corporation. RetrievedNovember 25, 2011.
  56. ^"The Java Community Process(SM) Program - JSRs: Java Specification Requests - detail JSR# 63". Jcp.org. RetrievedFebruary 9, 2016.
  57. ^"The Java Community Process(SM) Program - JSRs: Java Specification Requests - detail JSR# 59". Jcp.org. RetrievedFebruary 9, 2016.
  58. ^"Version 1.5.0 or 5.0?". Java.sun.com. RetrievedFebruary 9, 2016.
  59. ^"The Java Community Process(SM) Program - JSRs: Java Specification Requests - detail JSR# 176". Jcp.org. RetrievedFebruary 9, 2016.
  60. ^"Java Naming".Java.com. Oracle. RetrievedAugust 25, 2011.
  61. ^"The Java Community Process(SM) Program - JSRs: Java Specification Requests - detail JSR# 336". Jcp.org. RetrievedFebruary 9, 2016.
  62. ^Lea, Doug (September 13, 2004)."JSRs: Java Specification Requests: JSR 166: Concurrency Utilities".Java Community Process. Oracle Corp.
  63. ^"Java™ SE Development Kit 7 Update 76 Release Notes". Oracle.com. RetrievedFebruary 9, 2016.
  64. ^"Java 7 and Java 8 Releases by Date".www.java.com.
  65. ^"Windows XP and Java". Java.com. April 8, 2014. RetrievedFebruary 9, 2016.
  66. ^"java - installing JDK8 on Windows XP - advapi32.dll error".Stack Overflow.
  67. ^"Oracle JDK 8 and JRE 8 Certified System Configurations".www.oracle.com.
  68. ^"Oracle JDK 10 Certified System Configurations".www.oracle.com. RetrievedMarch 27, 2018.Only X.org Mode supported.Wayland mode is unsupported.
  69. ^"Oracle Java SE Support Roadmap".Oracle Corporation. September 25, 2018. RetrievedSeptember 25, 2018.
  70. ^"JDK 11".Oracle Corporation. September 25, 2018. RetrievedSeptember 26, 2018.
  71. ^"JDK 12".OpenJDK. RetrievedMarch 22, 2019.
  72. ^"JDK 13".OpenJDK. RetrievedSeptember 17, 2019.
  73. ^"JDK 14".OpenJDK. RetrievedMarch 25, 2020.
  74. ^"Deprecated List (Java SE 22)".cr.openjdk.org. RetrievedApril 16, 2024.
  75. ^"Remove Thread.countStackFrames".bugs.openjdk.org. RetrievedApril 16, 2024.
  76. ^"Java SE 22 ( JSR 397)".cr.openjdk.org. RetrievedApril 16, 2024.
  77. ^"What is Java technology and why do I need it?". Archived fromthe original on September 25, 2010. RetrievedDecember 15, 2011.Java runs on more than 850 million personal computers worldwide, and on billions of devices worldwide, including mobile and TV devices.
  78. ^"Java - Fedora Project Wiki".fedoraproject.org.
  79. ^"IntelliJ Platform".
  80. ^Topic, Dalibor (January 27, 2016)."Moving to a plugin-free web". Oracle.
  81. ^"Duke, the Java Mascot".Oracle. RetrievedMarch 18, 2019.
  82. ^"duke: Project Home Page".Sun Microsystems. Archived fromthe original on June 18, 2007. RetrievedMarch 18, 2007.
  83. ^"Duke, the Java Mascot".
  84. ^"Future Tech Duke (The Java Source)". Tori Wieldt. Archived fromthe original on August 20, 2011. RetrievedAugust 17, 2011.
  85. ^Smith, Donald (September 11, 2018)."Oracle JDK Releases for Java 11 and Later".
  86. ^Stallman, Richard (May 24, 2006)."The Curious Incident of Sun in the Night-Time".Groklaw.
  87. ^Schwartz, Jonathan."?".Jonathan Schwartz's Blog. Sun Microsystems. Archived fromthe original on July 15, 2006.
  88. ^"Oracle OpenWorld: UnBreakable Linux / 5015.2 not on the horizon | Formtek Blog". Formtek.com. October 26, 2006. RetrievedFebruary 9, 2016.
  89. ^"Oracle and Sun Microsystems | Strategic Acquisitions | Oracle". Sun.com. RetrievedFebruary 9, 2016.
  90. ^"Free but Shackled – The Java Trap – GNU Project – Free Software Foundation". Gnu.org. April 12, 2004. RetrievedFebruary 9, 2016.
  91. ^"Sun 'releases' Java to the World".BBC News. November 13, 2006. RetrievedMay 6, 2010.
  92. ^"Open JDK is here!". Sun Microsystems. May 8, 2007. RetrievedMay 9, 2007.
  93. ^Wielaard, Mark (May 30, 2007)."OpenJDK6 b10 source posted". RetrievedJuly 12, 2008.
  94. ^"Redhat Java".
  95. ^"Fedora Java".
  96. ^"Debian Java".
  97. ^"Ubuntu Java".
  98. ^Sharples, Rich (June 19, 2008)."Java is finally Free and Open". Archived fromthe original on June 20, 2008.
  99. ^libgdx (December 9, 2013)."Bundling a jre · libgdx/libgdx Wiki · GitHub". Github.com. RetrievedFebruary 9, 2016.
  100. ^"Question about bundling custom OpenJDK". Java-Gaming.org. Archived fromthe original on March 4, 2016. RetrievedFebruary 9, 2016.
  101. ^Cluley, Graham (January 15, 2013).""Unless it is absolutely necessary to run Java in web browsers, disable it", DHS-sponsored CERT team says – Naked Security". Nakedsecurity.sophos.com. RetrievedFebruary 9, 2016.
  102. ^"Generics in Java". Object Computing, Inc. Archived fromthe original on January 2, 2007. RetrievedDecember 9, 2006.
  103. ^"What's Wrong With Java: Type Erasure". December 6, 2006. Archived fromthe original on July 22, 2012. RetrievedDecember 9, 2006.
  104. ^"Java and Scala's Type Systems are Unsound"(PDF).
  105. ^"Java libraries should provide support for unsigned integer arithmetic".Bug Database, Sun Developer Network. Oracle. RetrievedJanuary 18, 2011.
  106. ^Owens, Sean R. (November 5, 2009)."Java and unsigned int, unsigned short, unsigned byte, unsigned long, etc. (Or rather, the lack thereof)".darksleep.com. RetrievedOctober 9, 2010.
  107. ^Kahan, W.; Darcy, Joseph D. (March 1, 1998)."How Java's Floating-Point Hurts Everyone Everywhere"(PDF). RetrievedDecember 9, 2006.
  108. ^"Types, Values, and Variables". Sun Microsystems. RetrievedDecember 9, 2006.
  109. ^"Which programming languages are fastest?".Computer Language Benchmarks Game. Archived fromthe original on August 14, 2011.
  110. ^"speed ÷ C++ GNU g++ speed".Computer Language Benchmarks Game. Archived fromthe original on September 26, 2011.
  111. ^"C++ vs Java performance; It's a tie! | Blog of Christian Felde". Blog.cfelde.com. June 27, 2010. RetrievedFebruary 9, 2016.
  112. ^"Java Security Architecture: Contents". Docs.oracle.com. October 2, 1998. RetrievedFebruary 9, 2016.
  113. ^Horowitz, Michael (August 31, 2012)."Java security flaw: yada yada yada | Computerworld". Blogs.computerworld.com. Archived fromthe original on July 24, 2014. RetrievedFebruary 9, 2016.
  114. ^Brook, Chris."The first stop for security news". Threatpost. Archived fromthe original on March 8, 2013. RetrievedFebruary 9, 2016.
  115. ^"Why and How to Disable Java on Your Computer Now - Technology & science - Innovation". NBC News. January 12, 2013. Archived fromthe original on February 21, 2014. RetrievedFebruary 9, 2016.
  116. ^"US Department of Homeland Security Calls On Computer Users To Disable Java".Forbes.com. RetrievedFebruary 9, 2016.
  117. ^Brook, Chris."The first stop for security news". Threatpost. Archived fromthe original on April 9, 2013. RetrievedFebruary 9, 2016.
  118. ^"Critical Patch Updates and Security Alerts". Oracle.com. RetrievedFebruary 9, 2016.
  119. ^Finkle, Jim (January 14, 2013)."Emergency patch for Java fails to fix cybercrime holes, warn experts". Independent.ie. RetrievedFebruary 9, 2016.
  120. ^Kelly, Meghan (January 14, 2013)."Oracle issues fix for Java exploit after DHS warns of its holes". VentureBeat. RetrievedFebruary 9, 2016.
  121. ^Krebs, Brian (February 16, 2016)."Good Riddance to Oracle's Java Plugin".KrebsOnSecurity.
  122. ^Gonsalves, Antone (September 5, 2012)."Java Is No Longer Needed. Pull The Plug-In".ReadWrite. Wearable World.
  123. ^"Java: should you remove it?".The Guardian. February 8, 2013.
  124. ^Bott, Ed."A close look at how Oracle installs deceptive software with Java updates".ZDNet.com. ZDNet. RetrievedDecember 14, 2014.
  125. ^"windows 7 - How do I update Java from a non-admin account?".Super User.
  126. ^"Update Google Chrome - Computer - Google Chrome Help".support.google.com.
  127. ^"Adobe Security Bulletin".helpx.adobe.com.

External links

edit
Wikiversity has learning resources aboutLearning Java
Look upJava in Wiktionary, the free dictionary.
Wikibooks has a book on the topic of:Java Programming
Listen to this article (42 minutes)
This audio file was created from a revision of this article dated 19 August 2013 (2013-08-19), and does not reflect subsequent edits.

[8]ページ先頭

©2009-2025 Movatter.jp