我需要在每月月底开火。 我编写了一个小程序,其代码需要在每个月的最后一天执行,我不知道如何实现它。我建议我的老板使用Windows调度程序,但他希望用带有计时器的代码完成。
那我该怎么做?
答案 0 :(得分:1)
我设法说服老板使用Windows预定任务。有一种方法可以使用计时器。我在下面提供了代码。这很快又很脏。请注意,使用计划任务是实现此类任务的正确方法。
private Timer timer;
public MyClass()
{
timer = new Timer();
timer.Elapsed += TimerElapsed;
}
private void TimerElapsed(object sender, ElapsedEventArgs elapsedEventArgs)
{
if (DateTime.Now.Day == DateTime.DaysInMonth(DateTime.Now.Year, DateTime.Now.Month))// is it the last day of this month
{
ClientStatsController.FireAll();
}
Thread.Sleep(TimeSpan.FromMinutes(5));
timer.Interval = CalculateInterval();
TimeSpan interval = new TimeSpan(0, 0, 0, 0, (int)timer.Interval);
}
// Helper functions
private static TimeSpan From24HourFormat(string value)
{
int hours = Convert.ToInt32(value.Substring(0, 2));
int mins = Convert.ToInt32(value.Substring(2, 2));
return TimeSpan.FromHours(hours) + TimeSpan.FromMinutes(mins);
}
private double CalculateInterval()
{
string runtimeValue = ConfigController.AppSettings["runTime"]; // just a simple runtime string like 0800
double runTime = From24HourFormat(runtimeValue).TotalMilliseconds;
if (DateTime.Now.TimeOfDay.TotalMilliseconds < runTime)
{
return runTime - DateTime.Now.TimeOfDay.TotalMilliseconds;
}
else
{
return (From24HourFormat("2359").TotalMilliseconds - DateTime.Now.TimeOfDay.TotalMilliseconds) + runTime;
}
}
<强> 修改 强>
我开始浏览所有旧问题和答案。
使用计时器是一个非常糟糕的主意。对于计划任务,您希望使用exaclty。调度程序。 Windows提供了一个不错的任务调度程序,但如果您有更复杂的调度逻辑和后台任务,最好使用适当的第三方库。
.NET的两个优秀版本是Hangfire和Quartz。
Hangfire配有仪表板,非常易于实现,尤其是在您使用.NET核心平台时。
Quartz也是一个非常好的解决方案,它有更多的调度选项,比Hangfire更适合复杂的调度逻辑。
建议的解决方案确实非常糟糕,来自刚刚开始工作的实习生。我很高兴回到过去,并意识到如何以不同的方式做得更好。