|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
一旦你有了思想,那你编的程序就有了灵魂,不管是什么语言到了你的手里都会是你的工具而已,他们的价值是能尽快帮助你实现你想要的目标。但是如果你没有了思想,那就像是海里的帆船失去了船帆,是很难到打海的另一边的。触发器SchedulingaTimerTasktoRunataCertainTime
==============================================
DatetimeToRun=
newDate(System.currentTimeMillis()+
numberOfMillisecondsInTheFuture);
Timertimer=newTimer();
timer.schedule(newTimerTask(){
publicvoidrun(){
//Taskhere
}
},timeToRun);
============================================
SchedulingaTimerTasktoRunRepeatedly
=============================================
//delayfor5sec.
intdelay=5000;
//repeateverysec.
intperiod=1000;
Timertimer=newTimer();
timer.scheduleAtFixedRate(newTimerTask(){
publicvoidrun(){
//Taskhere
}
},delay,period);
首先java功能强大的背后是其复杂性,就拿web来说,当今流行的框架有很多,什么struts,spring,jQuery等等,而这无疑增加了java的复杂性。 |
|