计时器在 JFrame 中
假设你的 Java 程序中有一个按钮,可以减少时间。这是 10 分钟计时器的代码。
private final static long REFRESH_LIST_PERIOD=10 * 60 * 1000; //10 minutes
Timer timer = new Timer(1000, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (cnt > 0) {
cnt = cnt - 1000;
btnCounter.setText("Remained (" + format.format(new Date(cnt)) + ")");
} else {
cnt = REFRESH_LIST_PERIOD;
//TODO
}
}
});
timer.start();