vote up 1 vote down star

i know that the JDK consists of all java packages .But what does the JRE consist of apart from java.exe ? I could understand the necessities of things in 'bin' folder in the JRE but what about the 'lib' folder ?

flag

3 Answers

vote up 6 vote down check

Have a look at this JDK and JRE File Structure document from Sun's JDK documentation.

It specifically says the following about the lib directory:

Code libraries, property settings, and resource files used by the Java runtime environment. For example:

  • rt.jar -- the bootstrap classes (the RunTime classes that comprise the Java platform's core API).
  • charsets.jar -- character conversion classes.

Aside from the ext subdirectory (described below) there are several additional resource subdirectories not described here.

link|flag
beat me by 17 seconds ;) – Yuval A Jan 6 '09 at 12:56
vote up 2 vote down

JRE is composed of the JVM which is the runtime interpreter for the Java language, the Class Loader, Secure Execution Implementation classes, Java APIs(core classes, SE classes) and the Java Web (Deployment) foundation which includes Java Web Start.

The lib part of JRE is Java's Library containing classes that lay the foundation for features like JavaBeans Components(JBCL) and Generic Collections(GCL).

link|flag
I think you meant "The JVM is composed the the JRE", which is more accurate. – Mike Reedell Jan 6 '09 at 15:01
vote up 0 vote down

The rest of it has the runtime support including standard class libraries.

link|flag
what do you mean by "standard class libraries" - you mean the same thing that is in the java packages in jdk ? – arshad Jan 6 '09 at 12:53
yes, although there may be some differences as not all of those may be required at runtime. if you install the jre you will see it is missing the compiler etc, vs the jdk. – frankodwyer Jan 6 '09 at 12:55
but i searched the entire folders of JRE but couldnt find any source code for java packages as that found in JDK . – arshad Jan 6 '09 at 12:58
not the source code, the jar files. – frankodwyer Jan 6 '09 at 13:00
oh so the jar files contain all the class files for java packages found in the sdk.isnt it frank ? thanks a lot for your patient answers pal. – arshad Jan 6 '09 at 13:04
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.