作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以标题确实说明了一切。我需要线程等待计时器完成,然后再执行方法中的下一个命令。
代码:
import javax.swing.Timer;
public class doesntMatter
{
Timer timer;
ActionListener timerTask;
public doesntMatter
{
timerTask = new ActionListener()
{
@Override
public void actionPerformed(ActionEvent e)
{
//taskSomethingIdk
}
}
}
private void whatever
{
timer = new Timer(1000, timerTask);
timer.setInitialDelay(0);
timer.start();
// here i need to wait for the timer to finish
if(timerhasfrigginfinished)
continueOrSomethingIdk
}
}
最佳答案
假设您的计时器重复,在计时器的 ActionListener 中检查它是否正在运行最后一次重复,如果是,则调用 continueOrSomethingIdk()
方法.
否则,您将必须设置自己的通知机制(回调),以便计时器通知任何监听器它已完成运行。
例如:
import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
@SuppressWarnings("serial")
public class WhenTimerDone extends JPanel {
private static final Color[] COLORS = {
Color.RED, Color.ORANGE,
Color.YELLOW, Color.GREEN,
Color.BLUE, Color.CYAN };
private static final String START = "Start";
private static final String DONE = "Done";
private static final int PREF_W = 400;
private static final int PREF_H = PREF_W;
public static final int TIMER_DELAY = 1000;
private JLabel statusLabel = new JLabel(START);
private StartAction startAction = new StartAction("Start!");
public WhenTimerDone() {
add(statusLabel);
add(new JButton(startAction));
}
@Override
public Dimension getPreferredSize() {
if (isPreferredSizeSet()) {
return super.getPreferredSize();
}
return new Dimension(PREF_W, PREF_H);
}
// this is the method called by the Timer's ActionListener when it is done
public void done() {
// reset all to baseline state
statusLabel.setText(DONE);
startAction.setEnabled(true);
setBackground(null);
}
// ActionListener for the start button
private class StartAction extends AbstractAction {
public StartAction(String name) {
super(name);
int mnemonic = (int) name.charAt(0);
putValue(MNEMONIC_KEY, mnemonic);
}
@Override
public void actionPerformed(ActionEvent e) {
// disables itself
setEnabled(false);
statusLabel.setText(START); // updates the status label
// create and start a timer
Timer timer = new Timer(TIMER_DELAY, new TimerListener());
timer.setInitialDelay(0);
timer.start();
}
}
// action listener for the timer
private class TimerListener implements ActionListener {
private int colorsIndex = 0;
@Override
public void actionPerformed(ActionEvent e) {
// simply loops through a colors array, changing background color
if (colorsIndex < COLORS.length) {
setBackground(COLORS[colorsIndex]);
colorsIndex++;
} else {
// when all colors shown -- stop the timer
((Timer) e.getSource()).stop();
// and call the done method -- ******* here's the key!
done(); // called when Timer is done!
}
}
}
private static void createAndShowGui() {
WhenTimerDone mainPanel = new WhenTimerDone();
JFrame frame = new JFrame("WhenTimerDone");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> createAndShowGui());
}
}
关于java等待swing.timer任务完成后再执行下一个任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41657010/
我有本地更改和远程更改。 有人告诉我必须先推,再 pull 。这背后有什么原因吗? 最佳答案 那个人错了:正确的模型是pull-before-you-push,而不是相反。 当您pull时,git 将
我正在使用最新版本的 Flat UI Pro 1.3.2 ( http://designmodo.com/flat/ ),jQuery 插件 flatui-radiocheck v0.1.0 和 iO
我是一名优秀的程序员,十分优秀!