如何在html中调整applet的大小

时间:2013-12-01 21:42:05

标签: java html applet

我有一个代码需要用户输入3个浮点数并计算总和,乘法,最小值,最大值和平均值。 我已成功在html中进行了显示。但是尺寸不是我想要的。 在我的计算机中,它在调整窗口大小后显示如下:enter image description here

然而,html代码在我的浏览器中显示为:enter image description here

显示尺寸不同。

我显示面板的代码如下:

public void paint(Graphics g)
{
    super.paint(g);
    g.drawRect(15, 10, 400, 180);
    g.drawString(String.format("The numbers entered are: %.3f, %.3f, %.3f", number1, number2, number3), 25, 25);
    g.drawString( "The count is 3", 25, 50);
    g.drawString(String.format("The sum is: %.3f",sum), 25, 75);
    g.drawString(String.format("The product is: %.3f",product), 25, 100);
    g.drawString(String.format("The average is: %.3f",average), 25, 125);
    g.drawString(String.format("The largest absolute value is: %.3f",max), 25, 150);
    g.drawString(String.format("The smallest absolute value is: %.3f",min), 25, 175);
}

我编写applet容器的html代码如下:

 <html>
 <body>
 <applet code = "calculator.class" width="400" height="100">
 </applet>
 </body>
 </html>

出了什么问题?

1 个答案:

答案 0 :(得分:0)

我将applet容器的大小更改为

<applet code = "calculator.class" width="600" height="300">

它运作良好。