我正在运行一个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);
}
任何帮助将不胜感激。