About 64 results
Open links in new tab
  1. Java SE,Java EE,Java ME 怎么区分? - 知乎

    Java SE (Java Platform,Standard Edition),应该先说这个,因为这个是标准版本。 Java EE (Java Platform,Enterprise Edition),java 的企业版本 Java ME (Java Platform,Micro Edition),java的微 …

  2. Java SE、Java EE、Java ME三者的区别? - 知乎

    Java SE、Java EE、Java ME三者的区别? 现在一个个来分析 1. Java SE(Java Platform,Standard Edition)。 Java SE 以前称为 J2SE。 它允许开发… 显示全部 关注者 6 被浏览

  3. What's the main difference between Java SE and Java EE?

    Jun 10, 2016 · Java SE (formerly J2SE) is the basic Java environment. In Java SE, you make all the "standards" programs with Java, using the API described here. You only need a JVM to use Java …

  4. Whether Java SE is the same as JDK? - Stack Overflow

    Sep 29, 2022 · Java SE is the 'base' platform that defines the Java language specification (JLS), the Java Virtual Machine Specification (JVMS), Standard library APIs, byte-code format, compilation …

  5. Java SE之基础篇 (一)——java环境的安装与配置

    Dec 26, 2021 · 选择Java (JDK) for Developers,点击,具体如下: 在JDK下载页,首先勾选Accept License Agreement,同意Oracle Java SE的Oracle技术网许可协议。 最后,根据操作系统选择合适 …

  6. Java JDK, SDK, SE? - Stack Overflow

    Java EE is a set of libraries and interfaces, such as EJB, JMS, JNDI, Servlets/JSPs that are built on top of the Java SE. Is Java SE 7 also Java JDK 7? and also what is the JDK?

  7. Java SE 是什么?Java 各个版本的区别是什么? - 知乎

    默认使用 UFT-8 编码 在 Java SE 18 之前的 Java中,标准字符集会因操作系统和语言设置的不同而不同。 Java 标准字符集决定了在 JDK 类库的许多方法中如何将字符串转换为字节,反之亦然(例如, …

  8. Java Versions and Compatibility - Stack Overflow

    Apr 10, 2023 · A Java Runtime Environment (JRE) is an implementation of the Java SE specifications, a complete Java platform, with all the software you need to execute an app written in a JVM …

  9. What is the difference between JVM, JDK, JRE & OpenJDK?

    Jul 19, 2012 · JVM is the Java Virtual Machine – it actually runs Java ByteCode. JRE is the Java Runtime Environment – it contains a JVM, among other things, and is what you need to run a Java …

  10. Quais são as diferenças entre Java SE, Java EE e Java ME?

    Aug 31, 2016 · Java SE = Standard Edition Contém os recursos básicos (java.lang, java.io, java.math, java.net, java.util, etc...). É normalmente por onde deve-se começar o aprendizado. Java EE = …