程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#創建Windows服務(Windows Services) 實戰之系統定時重啟服務

C#創建Windows服務(Windows Services) 實戰之系統定時重啟服務

編輯:C#入門知識

//服務器重啟服務,作者:柳永法 www.yongfa365.com

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Diagnostics;

using System.ServiceProcess;

using System.IO;

using System.Text;

using System.Timers;

namespace CBDCN_reboot

{

    public partial class Service1 : ServiceBase

    {

        public Service1()

        {

            InitializeComponent();

        }

        protected override void OnStart(string[] args)

        {

            // TODO: 在此處添加代碼以啟動服務。

            double sleeptime = ValidatorDate1(System.DateTime.Now.ToString("yyy-MM-dd HH:mm:ss"), System.DateTime.Now.ToString("yyy-MM-dd ") + "07:00:00");

            if (sleeptime < 0) sleeptime += 24 * 60 * 60 * 1000;

            writestr("開始",sleeptime);

            System.Timers.Timer t = new System.Timers.Timer(sleeptime);//實例化Timer類,設置間隔時間為10000毫秒;

            t.Elapsed += new System.Timers.ElapsedEventHandler(rebootsystem);//到達時間的時候執行事件;

            t.AutoReset = true;//設置是執行一次(false)還是一直執行(true);

            t.Enabled = true;//是否執行System.Timers.Timer.Elapsed事件;

            writestr("結束", sleeptime);

        }

        public void rebootsystem(object source, System.Timers.ElapsedEventArgs e)

        {

            System.Diagnostics.Process.Start("shutdown", "/r /f /t 0");

        }

        public static double ValidatorDate1(string strDateA, string strDateB)

        {

            string strFrom = strDateB;

            string strTo = strDateA;

            TimeSpan ts = Convert.ToDateTime(strFrom) - Convert.ToDateTime(strTo);

            double count = ts.TotalSeconds * 1000;

            return count;

        }

        public void writestr(string readme,double sleeptime)

        {

            //debug==================================================

            StreamWriter dout = new StreamWriter(@"c:" + System.DateTime.Now.ToString("yyyMMddHHmmss") + readme + ".txt");

            dout.Write(" SleepTime:" + Convert.ToString(sleeptime) + " 操作時間:" + System.DateTime.Now.ToString("yyy-MM-dd HH:mm:ss"));

            //debug==================================================

            dout.Close();

        }

        protected override void OnStop()

        {

        }

    }

}

網上相關介紹

   用C#創建Windows服務(Windows Services) 

   Windows 服務在Visual Studio 以前的版本中叫NT服務,在VS.net啟用了新的名稱。用Visual C# 創建Windows服務不是一件困難的事,本文就將指導你一步一步創建一個Windows服務並使用它。這個服務在啟動和停止時,向一個文本文件中寫入一些文字信息。 

第一步:創建服務框架  

要創建一個新的 Windows 服務,可以從Visual C# 工程中選取 Windows 服務(Windows Service)選項,給工程一個新文件名,然後點擊 確定。 

你可以看到,向導向工程文件中增加WebService1.cs類: 

 其中各屬性的含意是: 

Autolog                

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved