你可以用util里面的Timer类来操作。如果你使用了spring,你可以用它的定时任务来操作,不过底层也是这个
java.util.TimerTimer timer = new Timer();timer.schedule(task,time);
你搜索下定时发邮件的java做法,进行学习。