public class MainApp
{
public static void main(String[] args)
{
System.out.println("Hello, World!");
}
}
There are total 5 editions in Java which are as below :-
1. Java Standard Edition (Java SE)
2. Java Enterprise Edition (Java EE)
3. Java Micro Edition (Java ME)
4. JavaFX
5. Java Card
These are explained deeply in below....
Introduction : Java SE is the core edition of the Java platform and provides the foundational APIs and tools for general-purpose programming. It includes basic libraries for data structures, networking, I/O, and more.
Applications :
Introduction : Java EE (now Jakarta EE) is designed for large-scale, distributed, and multi-tiered applications. It extends Java SE with additional libraries and APIs for enterprise-level development, including web services, component-based architecture, and database interaction.
Applications :
Note: Java EE has been rebranded as Jakarta EE under the Eclipse Foundation. The shift is more about the organization managing the technology rather than the technology itself.
Introduction : Java ME is a subset of Java SE designed for developing applications on resource-constrained devices like embedded systems, mobile phones, and IoT (Internet of Things) devices.
Applications :
Introduction : JavaFX is a platform for building rich internet applications (RIAs) that can run on various devices. It provides a modern, hardware-accelerated user interface and is often used for creating visually appealing desktop applications.
Applications :
Introduction : Java Card is a specialized edition of the Java platform designed for secure, resource-constrained environments like smart cards and SIM cards. It enables small applications (applets) to run securely on devices with minimal memory and processing power, commonly used in industries requiring high security, such as banking, telecommunications, and government ID systems.
Applications :
Your feedback helps us grow! If there's anything we can fix or improve, please let us know.
We’re here to make our tutorials better based on your thoughts and suggestions.