Saturday, April 17, 2010

DIFFERENCE BETWEEN APPLET AND STANDALONE APPLICATION

Standalone application are created to execute in system where it is installed but applets are used to create dynamic pages of the website that is to be run by browser.Consider for example when you create an applet that contains the line
a=a+1;
the line is executed infinite number of times as far as the applet is running.We can convert any applet to standalone application by modifying the applet with main() function.Since java is a powerful language that can be able to take the control of whole system it denies some permissions for unsigned applets because applet are to be run on remote system in a browser.

No comments:

Post a Comment