Applet中的参数

【Applet中的参数】我们可以从HTML文件中获取任何信息作为参数。为此, Applet类提供了一个名为getParameter()的方法。句法:

public String getParameter(String parameterName)

在Applet中使用参数的示例
import java.applet.Applet; import java.awt.Graphics; public class UseParam extends Applet{public void paint(Graphics g){ String str=getParameter("msg"); g.drawString(str, 50, 50); }}

myapplet.html
< html> < body> < applet code="UseParam.class" width="300" height="300"> < param name="msg" value="http://www.srcmini.com/Welcome to applet"> < /applet> < /body> < /html>

    推荐阅读