Java Applets Don't Run In Browser Anymore

If you had your Java textbooks tell you that "Applets are defined as programs that run in the browser", then you probably have to get a new revision of that textbook. Probably even authors and Java gurus need to change their definitions and refresh their ideas. And all this because from Java 6 update 10, applets will be able to execute on a process outside the browser through a nice new plugin. :cool2:

Java 6 update 10 brings a whole new paradigm of applet development through the use of a new plugin for browsers. The applets running through the new plugin will feel like they are running inside the browser, but actually are executing on a different process outside the browser. The idea is that there is a lot of baggage that Applets carry when executing within the browser, thus slowing the user experience and taking an awful amount of time to load. The new browser plugin is supposed to work on:

  • Internet Explorer 6 and 7 on Windows XP and Windows Vista
  • Firefox 3 pre-release builds on Windows XP, Windows Vista, Solaris and Linux

The plugin does not work with Firefox 2, but Sun Microsystems expects someone from Mozilla to backport it. Opera, Safari and other people need to talk to Sun to get the plugin implemented. There is also a feature where you can switch between the old plugin and the new plugin. It all depends on which one do you want to use.

Applets have been a failed bet on Sun Microsystems part and you won't find many takers for Applets on today's Internet. Not that its a bad thing to use, but probably its download time, slow startup and not-so-seamless integration on webpages, made it a miss rather than a hit. Applets were supposed to be the defacto for active documents, but somehow didn't turn out to be that way. This is another push towards active documents or web deployed applications, but this time probably its more JavaFX.

Source: Sunny Talks Tech: Java Applets Don't Run In Browser Anymore
 
Back
Top