When the JDK already includes JRE for the execution of code, why do I have to download JRE separately to execute my java code is the doubt that's bothering me
-
5You don't have to download it separately. The JDK *includes* the JRE plus tools for compiling code and otherwise developing java. If all you need is the ability to run Java code, then downloading the JRE is just fine, but if you want to develop it, the JDK (Java Development Kit) is what you want. – CodeBlind Jul 23 '15 at 16:06
-
You don't have to download JRE explicitly. It comes bundled with JDK. – digidude Jul 23 '15 at 16:07
-
on your PC obviously JRE (which may be included in JDK) is needed to run your code. Other peoples also need JRE to run your code on their computers – phuclv Jul 23 '15 at 16:32
-
Seems like installing the 64-bit version of Java 8 also runs a JRE installation right afterwards... but you can actually cancel out of the JRE installation, since there will already be a version of the JRE in your java dir. The JDK installation will still complete if you cancel out at this step. – Alkanshel Jan 11 '17 at 21:17
2 Answers
As far as I remember this depends on your OS, browser and JDK version.
Eg. if you're using a 64-bit OS and installed a 64-bit JDK, but are using a 32-bit browser, then you might have to install a 32-bit JRE if you need Java support in the browser.
Otherwise a separate JRE installation should not be required, since the JDK installation also installs the JRE.

- 37,247
- 13
- 80
- 152
-
But during the installation of JDK, there is a separate step to specify the path for JRE; why is that? – Treefish Zhang Oct 05 '18 at 12:34
JRE: Java Runtime Environment. It is basically the Java Virtual Machine where your Java programs run on.
JDK: It is a group of utilities one needs to develop programs in Java including JRE, and the compilers and tools (like JavaDoc, and Java Debugger) to convert the source code into bytecode.
Refer: http://javarevisited.blogspot.de/2011/12/jre-jvm-jdk-jit-in-java-programming.html
Similar, post is there on below link as well.

- 1
- 1

- 1,977
- 3
- 19
- 39