計時器在 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();