Home » Parameter in Applet

Parameter in Applet

by Online Tutorials Library

Parameter in Applet

We can get any information from the HTML file as a parameter. For this purpose, Applet class provides a method named getParameter(). Syntax:

 public String getParameter(String parameterName)  

Example of using parameter in Applet:

myapplet.html

You may also like