Timer在java中不起作用

时间:2015-09-06 13:32:49

标签: java swing netbeans timer freeze

我正在运行一个netbeans项目,我希望在移动到下一帧之前有3秒的计时器。但是,按下按钮时,没有任何反应。

private void BeginTestButtonActionPerformed(java.awt.event.ActionEvent evt) {
        int count = 3;
        while (count > 0) {
            try {
                CountdownToTest.setText(count + " ");
                CountdownToTest.setFont(new Font("Serif", Font.BOLD, 32));
                CountdownToTest.setForeground(Color.RED);
                Thread.sleep(1000);
                count--;
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        Section1 frame = new Section1();
        frame.setVisible(true);
    }

任何帮助将不胜感激。

0 个答案:

没有答案