Core java tutorial for beginners
A tutorial blog which explains different core concepts related to Java along with programming examples
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

Passing Parameters to Applets

Suryateja Pericherla Categories: Applets. 8 Comments on Passing Parameters to Applets

In this article we will learn about passing parameters to applets using the param tag and retrieving the values of parameters using getParameter method.   Parameters specify extra information that can be passed to an applet from the HTML page. Parameters are specified using the HTML’s param tag.   Param Tag   The <param> tag is […]

Read the rest of this entry »

Applet Class

Suryateja Pericherla Categories: Applets. 1 Comment on Applet Class

In this article we will learn about the pre-defined Applet class which is available in java.lang package and the methods available in it.   The Applet class provides the support for creation and execution of applets. It allows us to start and stop the execution of an applet. Applet class extends the Panel class which extends Container class and […]

Read the rest of this entry »

Applet life cycle in java with example program

Suryateja Pericherla Categories: Applets. 23 Comments on Applet life cycle in java with example program

In this article we will learn about applet life cycle and various life cycle methods of an applet along with example program.   Introduction to life cycle of an applet What is applet life cycle?   It starts with the init() method, which initializes the applet, followed by the start() method, which starts the applet’s […]

Read the rest of this entry »