e552. 取Applet的参数

Posted borter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了e552. 取Applet的参数相关的知识,希望对你有一定的参考价值。

An applet can be configured through the use of applet parameters. For example, the contents for a news ticker applet could be specified through an applet parameter.

Here‘s how an applet parameter would be specified in an html file. The example specifies two applet parameters called p1 and p2:

    <applet code=AppletClassName width=100 height=100>
        <param name=p1 value="some text">
        <param name=p2 value="some more text">
    </applet>

Here‘s how the value of an applet parameter can be retrieved:

    String parameterName = "p1";
    String value = applet.getParameter(parameterName);
    
    parameterName = "p2";
    value = applet.getParameter(parameterName);

 

Related Examples

以上是关于e552. 取Applet的参数的主要内容,如果未能解决你的问题,请参考以下文章

e551. 精简的Applet

Codeforces Round #552 (Div. 3)-1154E-Two Teams-(模拟+双指针)

e557. 在Applet中显示图片

e558. 在Applet中多图片交互显示

e555. 在Applet中播放音频

拥有的50个CSS代码片段(上)