java.awt

Creating a Simple Java Applet

Submitted by pavel7_7_7 on
In this article you will find information about the creating of simple applet using java.awt. Java applet is a small application created using Java language. The user starts applet from the web-browser and it's executed by the Java Virtual machine. The parameters of the applet are received from the web page and they can be used during the applet execution. We will create an Applet, that takes some information from the menu of choice lists and inputs the result of our choice. The first step to create an applet is to derive our class from Applet class.