这是用java编写的代码,用于将代码的执行延迟5秒。但它没有用。 “this.jLabel2.setText(”TDK“);”声明不起作用。任何人都可以帮我解决这个问题。
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
this.jLabel2.setText("TDK");
boolean result=false;
result=stop();
if(result)
{
this.jLabel1.setText("MDK");
}
}
public boolean stop()
{
String current= new java.text.SimpleDateFormat("hh:mm"
+ ":ss").format(new java.util.Date(System.currentTimeMillis()));
String future=new java.text.SimpleDateFormat("hh:mm"
+ ":ss").format(new java.util.Date(System.currentTimeMillis()+5000));
while(!(current.equals(future)))
{
current= new java.text.SimpleDateFormat("hh:mm"
+ ":ss").format(new java.util.Date(System.currentTimeMillis()));
}
return true;
}
答案 0 :(得分:3)
您正在阻止事件派发线程(不,不要使用Thread.sleep())。使用摆动Timer:
Timer timer = new Timer(HIGHLIGHT_TIME, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
jLabel1.setText("MDK");
}
});
timer.setRepeats(false);
timer.start();
其中HIGHLIGHT_TIME
是您要延迟设置文本的时间。
答案 1 :(得分:1)
使用设置为false
的{{3}} javax.swing.Timer
。