C# 定時執行一個方法

來源:互聯網
上載者:User

按照你的說法,用timer最符合你的要求。在Global檔案的Application_Start中建立一個timer,

 
System.Timers.Timer timer = new System.Timers.Timer();
timer.Enabled = true;
timer.Interval = 60000;//Execution interval time in milliseconds
timer.Start();
timer.Elapsed += new System.Timers.ElapsedEventHandler(Timer1_Elapsed);

private void Timer1_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
 {
     
    // Get hour, minute second, and start executing a program if it is equal to a certain value.
    int intHour = e.SignalTime.Hour;
    int intMinute = e.SignalTime.Minute;
    int intSecond = e.SignalTime.Second;
    // Customize the time; for example, execute a function at 10:30:00
    int iHour = 10;
    int iMinute = 30;
    int iSecond = 00;
    // Set   to execute once every second
    if (intSecond == iSecond)
    {
        Console.WriteLine("Execute once every second at the beginning.");
    }
    // Set   start execution at 30 minutes every hour
    if (intMinute == iMinute && intSecond == iSecond)
    {
        Console.WriteLine("Execute once every 30 minutes of the hour.");
    }

    // Set   every day at 10:30: 00 to start executing the program
    if (intHour == iHour && intMinute == iMinute && intSecond == iSecond)
    {
        Console.WriteLine("Start execution at 10:30 every day.");
    }
} 

================================================================


 定時器的建立很簡單,只要在Asp.net的Global.asax中的Application_Start方法中加入如下代碼就可以了。但本人我推薦推薦,對於一個Web網站來說,它所提供的是讓使用者去瀏覽它,但不是定時的去執行某樣操作,如果你的網站已經達到一定的流量,請千萬不要這樣子做,把需要定時執行的操作寫成服務吧。

下面我們來講下如何在Asp.net中加定時器,首先在Global.asax裡建立一個方法,當然,你其它建立一個類,或者在已有類中寫也是一樣的。代碼如下:

void demo_Elapsed(object sender, ElapsedEventArgs e)

{//需要執行的操作}

寫完demo_Elapsed這個方法之後,就在Application_Start方法下添加如下代碼:

Timer objTimer = new Timer();

objTimer.Interval = 1 * 1000;//每秒執行一次(這裡單位是毫秒)

objTimer.Enabled = true;

objTimer.Elapsed += new ElapsedEventHandler(demo_Elapsed);//demo_Elapsed就是需要調用的方法

到此就已經完成了。

如果我們想指定一個時間來執行程式的話,我們可以從ElapsedEventArgs中取得,代碼如下:

int hour = e.SignalTime.Hour;//時

int minute = e.SignalTime.Minute;//分

int second = e.SignalTime.Second;//秒

得到了時、分、秒之後,接下來的操作就簡單了,只要對比你指定的時間就行了,代碼我就不寫了。


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.