html文件里:<applet name="xxxxx" code="your_applet.class" width=400 height=400>
<param name="dd" value="44444"/>
<param name="cc" value="bbbb">
</applet>applet里:Applet my_applet=this.getAppletContext().getApplet("xxxxx");
String param_dd=my_applet.getParameter("dd");
//上面这这种方法是可以得到任何一个处在同一html页面里的applet的参数//下面这种则是只需要这个applet的参数
String param_dd=this.getParameter("dd");