This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, what is difference between JRE, JVM & Java Plugins? Thanks, Angela
Brett Anthoine
Greenhorn
Joined: Mar 12, 2002
Posts: 27
posted
0
Hi, JRE means Java Runtime Environment and is the runtime necessary to run a compiled java class. In fact JRE is the entire package with all the necessary files to run a java program, including the : JVM ,Java Virtual Machine which is part of either the JRE and the SDK (standard development kit), and is used to run the java program. It is like an interpreter. Java plugins are (I think) all the optional packages like Java3D or the Java Media Framework. feel free to look at Sun java website for more info. Bye [ April 06, 2002: Message edited by: Brett Anthoine ]
Brett Anthoine<br />"640k should be enough for anybody."
JRE means Java Runtime Environment and is the runtime necessary to run a compiled java class. In fact JRE is the entire package with all the necessary files to run a java program, including the : JVM ,Java Virtual Machine which is part of either the JRE and the SDK (standard development kit), and is used to run the java program. It is like an interpreter.
Hi Brett... what I understood from you is that if you download the JRE you get everything, including the SDK. I don't know if you read my post "javac is killing me". I had downloaded the JRE and the javac file was not there, I had to download the JDK separately. So, can you just download the JDK and not bother about the JRE or are they connected to each other? cheers
I'm not going to be a Rock Star. I'm going to be a LEGEND! --Freddie Mercury
Brett Anthoine
Greenhorn
Joined: Mar 12, 2002
Posts: 27
posted
0
Hi Andres, Sorry if I've been confusing on this one. (English is my third language ) You're right the JRE doesn't include the compiler (javac). The JRE is part of the JDK but can be used alone. If you look into your Jdk directory , you'll find a directory named JRE... Hope it's clearer now
Andres Gonzalez
Ranch Hand
Joined: Nov 27, 2001
Posts: 1561
posted
0
It is Brett.... thanks... cheers
Angela D'souza
Ranch Hand
Joined: Jan 16, 2002
Posts: 469
posted
0
Thanks to all, So what I concluded is: JRE -- Includes JVM, Java Core library files, class file to run the java program JVM - is a intepreter & includes Class Loader to load the class files and JIT to covert java byte codes to Machine language. Java Plugins - includes JRE. SDK - Includes "javac" & "java". Thanks, Angela