Home >Java >javaTutorial >What does the SE part of java stand for?
Currently, there are three versions of the Java2 platform, namely JavaME, JavaSE, and Java EE. Among them, JavaSE is the standard version of the Java 2 platform suitable for desktop systems. A detailed introduction will be given below, and interested friends can learn more.
Java Standard Edition (Java SE)
Java SE is the abbreviation of Java Platform, Standard Edition, used for Develop and deploy Java applications on desktop, server, and embedded devices and real-time environments.
Java SE includes class libraries for developing Java Web services. At the same time, Java SE provides the foundation for Java EE and Java ME. Java SE is based on JDK and JRE.
JavaSE Origin
Java's security model dates back to the early days of the platform, when it was primarily seen as a browser extension mechanism to enhance the user experience. The Java code executed can be derived from a variety of sources, some of which are unknown or unreliable.
Accordingly, the platform's security initially focused primarily on solving the problem of verifying that the code being executed was trustworthy, and the entire game revolved around executing applets in the browser. However, this model is simply divided into trusted and untrusted parts, and even moderately complex applications cannot run.
Related learning recommendations: java basic tutorial
The above is the detailed content of What does the SE part of java stand for?. For more information, please follow other related articles on the PHP Chinese website!