• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

PLUGIN AND APPLET

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what is the difference between plugin and applet?.
 
Ranch Hand
Posts: 255
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
a plug-in for what
------------------
I wish there was a button on my monitor to turn up the intellegince.
Theres a button called 'brightness' but it doesn't work
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I presume "SIMPLE MAN" means a browser plug-in such as Adobe Acrobat or Shockwave.
Applets run in a Java Virtual Machine, which may itself be a browser plug in. Applets are downloaded and run as required, without restarting the browser, and a restricted in what they can do by a "sandbox", so they can't carry viruses or other damaging side effects. Applets are platform independent and will run in any browser with a Java Virtual Machine.
A browser plug in usually requires a browser restart once it is installed, it is very platform dependent only being suiitable for a particular processor and operating system. A plug in is capable of far more than an applet in that it can change files on your system, access peripherals, and so on, so you should be careful which plugins you install.
 
author
Posts: 621
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Don't forget about the Sun's Java Plugin which runs outside of the browser (for use with applets). This becomes a very interesting discussion if one is dealing with rmi or other security fussy technologies. Perhaps, Simple can be a bit more specific.
Sean
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic