Java - Explain how to read information from the applet parameters

Explain how to read information from the applet parameters.

- The getParameter() method can be used within the init() method to access the parameter data.

- It takes the parameter name as an argument.

Example:
public void init()
{
   String val = getParameter("foreground-color");
}
Java - Provide an example where two applets communicate each other
Provide an example where two applets communicate each other...
Java - Explain how to play sound in an applet
Explain how to play sound in an applet import java.applet.*;.....
Java - Explain how to play audio in a stand alone application
How to play audio in a stand alone application...
Post your comment