Java Applet Eclipse中的Windows大小

我试图将Applet窗口的大小设置为500乘500,但我无法实现这一点.
这是我的代码,

  public void init() { 
    // Start Screen Color 
    setBackground(Color.RED);
    this.setSize(new Dimension(500,500));

    width=getSize().width;
    height=getSize().height;

    running=false;
    repaint();
    offscreenImage = createImage(width,height);
    offscreenGraphics = offscreenImage.getGraphics();
    addKeyListener(this);    
    addFocusListener(this);

    waitingForSpace=false;

    repaint();
  }

当我在Eclipse中按下CTRL F11时,我得到大小为200乘200的输出窗口,为什么我尝试运行程序5到10次,有时窗口返回500乘500大小,而有时窗口大小为200 200.

我不明白为什么我改变窗口的大小,因为我根本没有改变任何代码.
我希望尺寸保持在500乘500

解决方法:

如果你使用eclipse,你可以从“运行配置”Java Applet-> Parameters“更改applet大小.我认为这是问题所在,因为eclipse中java applet大小的默认值是200 * 200.

希望它会有所帮助:
a similar issue

上一篇:java – 按钮最初不绘制


下一篇:java – 带有jdbc applet的NoClassDefFoundError