Jua*_*diz 3 java swing multithreading timer swingworker
我想知道如何在Java中使用Swing应用程序添加时间延迟,我使用过Thread.sleep(time),但我也使用了SwingWorker,但它不起作用.这是我的代码的一部分:
switch (state) {
case 'A':
if (charAux == 'A') {
state = 'B';
//Here's where I'd like to add a time delay
jLabel13.setForeground(Color.red);
break;
} else {
//Here's where I'd like to add a time delay
jLabel12.setForeground(Color.red);
break;
}
}
Run Code Online (Sandbox Code Playgroud)
我希望你在使用SwingWorker时可以帮助我或解决我的疑虑.
这是一个使用a的例子 javax.swing.Timer
public class TestBlinkingText {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException ex) {
} catch (InstantiationException ex) {
} catch (IllegalAccessException ex) {
} catch (UnsupportedLookAndFeelException ex) {
}
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new BlinkPane());
frame.setSize(200, 200);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
protected static class BlinkPane extends JLabel {
private JLabel label;
private boolean state;
public BlinkPane() {
label = new JLabel("Look at me!");
setLayout(new GridBagLayout());
add(label);
Timer timer = new Timer(500, new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
state = !state;
if (state) {
label.setForeground(Color.RED);
} else {
label.setForeground(Color.BLACK);
}
repaint();
}
});
timer.setRepeats(true);
timer.setCoalesce(true);
timer.setInitialDelay(0);
timer.start();
}
}
}
Run Code Online (Sandbox Code Playgroud)
好消息是您删除了Thread.sleep,因为这会使您的 UI 在这 2 秒内无响应。
你可以做的是启动一个Timer只运行一次:
int delay = 2000;
Timer timer = new Timer( delay, new ActionListener(){
@Override
public void actionPerformed( ActionEvent e ){
jLabel12.setForeground( Color.red );
}
} );
timer.setRepeats( false );
timer.start();
Run Code Online (Sandbox Code Playgroud)
请注意Timeris a javax.swing.Timer,它确保在事件调度线程上调用的actionPerformed方法,ActionListener遵守 Swing 线程规则。
这也可以使用SwingWorker,但我会坚持使用Timer。如果您想使用SwingWorker,您可以简单地Thread.sleep在doInBackground()方法中使用,并JLabel在done()方法中更新。
类似的东西
class Delay extends SwingWorker<Void, Object> {
@Override
public void doInBackground() {
Thread.sleep( 2000 );
}
@Override
protected void done() {
jLabel12.setForeground( Color.red );
}
}
Run Code Online (Sandbox Code Playgroud)