我需要在单击一个JButton之后,例如在21:02:43调用一个方法。
使用Google我只能找到延迟,但这不是我需要的。
答案 0 :(得分:6)
java.util.Timer有一个计划(TimerTask,Date)方法。它就是这样做的。
添加了示例:
Timer myTimer = new Timer();
myTimer.schedule(new TimerTask() {
@Override
public void run() {
// put code that needs to run here
}
}, date);
此处还有很多关于计时器的示例和信息:Timer and timertasks