
class files of the Java standard library. The most important is modules, a file that contains the. jars, configuration files, property files, fonts, translations, certs, etc. lib/ has a large number of supporting files: some.conf/ holds user-editable configuration files for Java experts to play with.There are some other utilities here as well, such as keytool and policytool. The most important is java (and for Windows, javaw as well), which launches the JVM.

#JAVA 8 JRE INSTALL#
On the other hand, if you are planning to do some Java programming, you need to install the JDK instead. Usually, if you only care about running Java programs on computer you will only install the JRE. It is capable of creating and compiling programs. It has everything the JRE has, but also the compiler ( javac) and tools (like javadoc and jdb).

The JDK is the Java Development Kit, the full-featured SDK for Java. However, it cannot be used to create new programs.

It is a package of everything necessary to run a compiled Java program, including the Java Virtual Machine (JVM), the Java Class Library, the java command, and other infrastructure.
