Briefly talk about the differences between Java SE Java EE and Java ME

  • 2020-04-01 02:23:57
  • OfStack

1. Java SE (Java Platform, Standard Edition). Java SE was formerly known as J2SE. It allows development and deployment on the desktop,

Java applications used in servers, embedded environments, and real-time environments. Java SE contains classes that support development of Java Web services,

Provides the foundation for Java Platform, Enterprise Edition (Java EE).

2. Java EE (Java Platform, Enterprise Edition). This version was previously known as J2EE. The enterprise version helps with development and

Deploy portable, robust, scalable, and secure server-side Java applications. Java EE is built on top of Java SE,

It provides Web services, component models, management, and communication apis that can be used to implement an enterprise-level service-oriented architecture (SOA)

And Web 2.0 applications.

3. Java ME (Java Platform, Micro Edition). This version was previously known as J2ME. Java ME for mobile devices and embedded devices

Applications running on mobile phones, pdas, TV set-top boxes, and printers provide a robust and flexible environment.

Java ME includes a flexible user interface, a robust security model, many built-in network protocols, and rich support for connected and offline applications that can be downloaded dynamically.

Applications based on the Java ME specification are written once and can be used on many devices, and can take advantage of the native capabilities of each device.

Put it more simply

      Java SE is software that runs on a computer.

      Java EE is used to make websites - (our common JSP technology)

      Java ME does mobile software.


Related articles: