Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If applets are run in browser's JRE, why is a JRE needed on the machine?

Applets are run inside browser's JRE. Does this mean that you do not have to have JRE installed on your machine in order to run an applet?

like image 876
user32262 Avatar asked Jun 04 '10 05:06

user32262


1 Answers

The "browser's JVM" is the JRE that you have installed on your machine. Browsers don't typically come with their own, they just use whatever you've got installed on your system already.

Perhaps you've confusing Java with JavaScript, which are actually totally unrelated to each other.

like image 97
Dean Harding Avatar answered Nov 02 '22 06:11

Dean Harding