What does JVM and JAR specify? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What does JVM and JAR specify?

2nd Mar 2018, 5:56 PM
Manroop Singh
Manroop Singh - avatar
2 Answers
+ 3
Although this may go slightly beyond your question these are still related. 0) JVM : Java Virtual Machine 1) JRE : Java Runtime Environment 2) JDK : Java Development Kit 3) JAR : Java Archive 0) The JVM is the "interpreter" for your Java program. 1) The JRE is a more general term referring to the software needed to run Java programs such as the JVM. 2) The JDK is similar in scope to the JRE but it is a suite of tools and resources for developing Java programs. 3) A JAR file is essentially an archive format that packages together all class files, resources, and metadata required for a Java program.
2nd Mar 2018, 7:29 PM
Lewis
Lewis - avatar