What is the difference between jdk 8 for arm and java SE embedded

java JDK 8 for arm and java SE embedded in both are mainly designed for developing applications in embedded systems.

What is the difference between these two JDK ??

+5
source share
2 answers

You can find the difference here.

The JDK includes the Java Runtime Environment (JRE) for ARM platforms and tools such as compilers and debuggers needed to develop the Application. Java SE Embedded is a subset of the JDK and includes: JRE only.

JDK 8 for ARM includes application development tools for ARM platforms, while Java SE Embedded only includes runtime.

+2
source

As the Oracle website says:

Java SE Embedded comes from the JDK, but provides certain features and support for the embedded market on a limited set of supported platforms. Built-in features and support include additional platforms, small JRE files (additional files deleted), headless configurations and memory optimization.

The source is here . This FAQ may be interesting.

0
source

Source: https://habr.com/ru/post/1210248/


All Articles