What is the difference between applications and applets?-

chinmay.sahoo

New member
a)Application must be run on local machine whereas applet needs no explicit installation on local machine.
b)Application must be run explicitly within a java-compatible virtual machine whereas applet loads and runs itself automatically in a java-enabled browser.
c)Application starts execution with its main method whereas applet starts execution with its init method.
d)Application can run with or without graphical user interface whereas applet must run within a graphical user interface.
 
An applet is a program written in the Java programming language that can be included in an HTML page, much in the same way an image is included. An application is a standalone Java program that runs as a true application, outside of a browser. Both require a JVM.

Rentalproxies
 
Back
Top