difference between java.exe and java.dll

can some one tell me the difference between java.exe under bin directory of jdk and java.dll under bin directory of jre under jdk. and how to determine jre the application is using.How to locate istalled jres in windows registry
[285 byte] By [polymorphica] at [2007-11-26 22:08:15]
# 1

> can some one tell me the difference between

> java.exe under bin directory of jdk and

> java.dll under bin directory of jre under jdk.

java.dll is the library containing the Java Virtual Machine. java.exe is the

program you execute to run Java. It uses java.dll. The java.dll can also be used

to invoke Java classes from other languages using the Java Native Interface (JNI), see

http://java.sun.com/j2se/1.4.2/docs/guide/jni/index.html for more information.

Steve Dever

stevedever1a at 2007-7-10 10:54:13 > top of Java-index,Desktop,Runtime Environment...