2

我遇到了一个我无法解决的奇怪问题。我有两个类一个 JFrame 类:

public class TowerDefenceFrame extends JFrame {

public TowerDefenceFrame() {
    super("Tower Defence");
    setSize(1023, 708);
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    //setResizable(false);
}

public static void main(String[] args) {

    TowerDefenceFrame tdf = new TowerDefenceFrame();
    tdf.setVisible(true);
    Map.main(args);
  }
}

和一个图形类:

public class Board extends JPanel implements ActionListener {
BufferedImage road;
BufferedImage grass;
Timer time;

public Board() {
    setFocusable(true);
    time = new Timer(5, this);
    time.start();

    try {
        road = ImageIO.read(new File("../road.png"));
        grass = ImageIO.read(new File("../grass.png"));
    } catch (IOException ex) {
        Logger.getLogger(Board.class.getName()).log(Level.SEVERE, null, ex);
    }


}

public void actionPerformed(ActionEvent e) {
    repaint();

}

public void paint(Graphics g) {
     super.paint(g);

        for (int i = 0; i <= Map.mapWidth - 1; i++) {
            for (int l = 0; l <= Map.mapHeight - 1; l++) {

            if (Map.mapArray[l][i] == 1) {
                g.drawImage(road, (Map.blockSize * i), (Map.blockSize * l), this);

            } else if (Map.mapArray[l][i] == 0) {
                g.drawImage(grass,(Map.blockSize * i), (Map.blockSize * l), this);
            } 

        }





    }
         repaint();

   }
}

当我运行应用程序时,会出现 JFrame,但是 Board 类中的图形不会出现。我一直在寻找这个问题的答案,但找不到。我注意到,当我调整 JFrame 的大小时,出现了来自 board 类的图像。这让我相信我必须更新 board 类才能获得图形。我尝试在我的 JFrame 类中添加一个计时器循环,以每 1/2 秒添加一次 Board 类。它没有用。我被这个问题困扰了一段时间,我想知道你们中的任何人是否可以帮忙,

谢谢。

4

1 回答 1

2

JJAppletand JFrameareSwingAppletand Frameare等开头的类AWT。该方法paint()AWT类一起使用,但您正在使用JPanels 和JFrames。

此外,因为您调用super了您的paint()方法(您将更改为paintComponent),所以您必须@Override让它正常工作。

于 2013-03-24T14:29:03.507 回答