What is the difference between JDK and JRE?

Asked 2 years ago, Updated 2 years ago, 44 views

What is the difference between JDK and JRE? What role do you have and what should I use?

java

2022-09-22 22:33

1 Answers

It's a Java development tool. It contains compilers, etc. necessary for Java programming. Non-Java programmers do not need to download. If JDK is installed, JRE below is also installed.

Creating a Java environment where compiled Java programs can run.

JRE must be installed to run the Java program.

There is no Java programming tool in JRE. To do Java programming, you need to get the above JDK. Both are free.


2022-09-22 22:33

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.