欧美大屁股bbbbxxxx,狼人大香伊蕉国产www亚洲,男ji大巴进入女人的视频小说,男人把ji大巴放进女人免费视频,免费情侣作爱视频

歡迎來到入門教程網(wǎng)!

C#教程

當前位置:主頁 > 軟件編程 > C#教程 >

使用C#創(chuàng)建Windows服務(wù)的實例代碼

來源:本站原創(chuàng)|時間:2020-01-10|欄目:C#教程|點擊: 次

本文介紹了使用C#創(chuàng)建Windows服務(wù)的實例代碼,分享給大家

一、開發(fā)環(huán)境

操作系統(tǒng):Windows 10 X64

開發(fā)環(huán)境:VS2015

編程語言:C#

.NET版本:.NET Framework 4.0

目標平臺:X86

二、創(chuàng)建Windows Service

1、新建一個Windows Service,并將項目名稱改為“MyWindowsService”,如下圖所示:

2、在解決方案資源管理器內(nèi)將Service1.cs改為MyService1.cs后并點擊“查看代碼”圖標按鈕進入代碼編輯器界面,如下圖所示:

3、在代碼編輯器內(nèi)如入以下代碼,如下所示:

using System;
using System.ServiceProcess;
using System.IO;

namespace MyWindowsService
{
  public partial class MyService : ServiceBase
  {
    public MyService()
    {
      InitializeComponent();
    }

    string filePath = @"D:\MyServiceLog.txt";

    protected override void OnStart(string[] args)
    {
      using (FileStream stream = new FileStream(filePath,FileMode.Append))
      using (StreamWriter writer = new StreamWriter(stream))
      {
        writer.WriteLine($"{DateTime.Now},服務(wù)啟動!");
      }
    }

    protected override void OnStop()
    {
      using (FileStream stream = new FileStream(filePath, FileMode.Append))
      using (StreamWriter writer = new StreamWriter(stream))
      {
        writer.WriteLine($"{DateTime.Now},服務(wù)停止!");
      }
    }
  }
}

4、雙擊項目“MyWindowsService”進入“MyService”設(shè)計界面,在空白位置右擊鼠標彈出上下文菜單,選中“添加安裝程序”,如下圖所示:

5、此時軟件會生成兩個組件,分別為“serviceInstaller1”及“serviceProcessInstaller1”,如下圖所示:

6、點擊“serviceInstaller1”,在“屬性”窗體將ServiceName改為MyService,Description改為我的服務(wù),StartType保持為Manual,如下圖所示:

7、點擊“serviceProcessInstaller1”,在“屬性”窗體將Account改為LocalSystem(服務(wù)屬性系統(tǒng)級別),如下圖所示:

8、鼠標右鍵點擊項目“MyWindowsService”,在彈出的上下文菜單中選擇“生成”按鈕,如下圖所示:

9、至此,Windows服務(wù)已經(jīng)創(chuàng)建完畢。

三、創(chuàng)建安裝、啟動、停止、卸載服務(wù)的Windows窗體

1、在同一個解決方案里新建一個Windows Form項目,并命名為WindowsServiceClient,如下圖所示:

2、將該項目設(shè)置為啟動項目,并在窗體內(nèi)添加四個按鈕,分別為安裝服務(wù)、啟動服務(wù)、停止服務(wù)及卸載服務(wù),如下圖所示:

3、按下F7進入代碼編輯界面,引用“System.ServiceProcess”及“System.Configuration.Install”,并輸入如下代碼:

using System;
using System.Collections;
using System.Windows.Forms;
using System.ServiceProcess;
using System.Configuration.Install;

namespace WindowsServiceClient
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    string serviceFilePath = $"{Application.StartupPath}\\MyWindowsService.exe";
    string serviceName = "MyService";

    //事件:安裝服務(wù)
    private void button1_Click(object sender, EventArgs e)
    {
      if (this.IsServiceExisted(serviceName)) this.UninstallService(serviceName);
      this.InstallService(serviceFilePath);
    }

    //事件:啟動服務(wù)
    private void button2_Click(object sender, EventArgs e)
    {
      if (this.IsServiceExisted(serviceName)) this.ServiceStart(serviceName);
    }

    //事件:停止服務(wù)
    private void button4_Click(object sender, EventArgs e)
    {
      if (this.IsServiceExisted(serviceName)) this.ServiceStop(serviceName);
    }

    //事件:卸載服務(wù)
    private void button3_Click(object sender, EventArgs e)
    {
      if (this.IsServiceExisted(serviceName))
      {
        this.ServiceStop(serviceName);
        this.UninstallService(serviceFilePath);
      }
    }

    //判斷服務(wù)是否存在
    private bool IsServiceExisted(string serviceName)
    {
      ServiceController[] services = ServiceController.GetServices();
      foreach (ServiceController sc in services)
      {
        if (sc.ServiceName.ToLower() == serviceName.ToLower())
        {
          return true;
        }
      }
      return false;
    }

    //安裝服務(wù)
    private void InstallService(string serviceFilePath)
    {
      using (AssemblyInstaller installer = new AssemblyInstaller())
      {
        installer.UseNewContext = true;
        installer.Path = serviceFilePath;
        IDictionary savedState = new Hashtable();
        installer.Install(savedState);
        installer.Commit(savedState);
      }
    }

    //卸載服務(wù)
    private void UninstallService(string serviceFilePath)
    {
      using (AssemblyInstaller installer = new AssemblyInstaller())
      {
        installer.UseNewContext = true;
        installer.Path = serviceFilePath;
        installer.Uninstall(null);
      }
    }
    //啟動服務(wù)
    private void ServiceStart(string serviceName)
    {
      using (ServiceController control = new ServiceController(serviceName))
      {
        if (control.Status == ServiceControllerStatus.Stopped)
        {
          control.Start();
        }
      }
    }

    //停止服務(wù)
    private void ServiceStop(string serviceName)
    {
      using (ServiceController control = new ServiceController(serviceName))
      {
        if (control.Status == ServiceControllerStatus.Running)
        {
          control.Stop();
        }
      }
    }
  }
}

4、為了后續(xù)調(diào)試服務(wù)及安裝卸載服務(wù)的需要,將已生成的MyWindowsService.exe引用到本W(wǎng)indows窗體,如下圖所示:

5、由于需要安裝服務(wù),故需要使用UAC中Administrator的權(quán)限,鼠標右擊項目“WindowsServiceClient”,在彈出的上下文菜單中選擇“添加”->“新建項”,在彈出的選擇窗體中選擇“應(yīng)用程序清單文件”并單擊確定,如下圖所示:

6、打開該文件,并將<requestedExecutionLevel level="asInvoker" uiAccess="false" />改為<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />,如下圖所示:

7、IDE啟動后,將會彈出如下所示的窗體(有的系統(tǒng)因UAC配置有可能不顯示),需要用管理員權(quán)限打開:

8、重新打開后,在IDE運行WindowsServiceClient項目;

9、使用WIN+R的方式打開運行窗體,并在窗體內(nèi)輸入services.msc后打開服務(wù),如下圖所示:

10、點擊窗體內(nèi)的“安裝服務(wù)”按鈕,將會在服務(wù)中出現(xiàn)MyService,如下圖所示:

11、點擊“運行服務(wù)”按鈕,將啟動并運行服務(wù),如下所示:

12、點擊“停止服務(wù)”按鈕,將會停止運行服務(wù),如下圖所示:

13、點擊“卸載服務(wù)”按鈕,將會從服務(wù)中刪除MyService服務(wù)。

14、以上啟動及停止服務(wù)將會寫入D:\MyServiceLog.txt,內(nèi)容如下所示:

源代碼下載:MyWindowsService_jb51.rar

補充:如何調(diào)試服務(wù)

1、要調(diào)試服務(wù),其實很簡單,如需將服務(wù)附加進程到需要調(diào)試的項目里面即可,假如要調(diào)試剛才建的服務(wù),現(xiàn)在OnStop事件里設(shè)置斷點,如下所示:

2、啟動“WindowsServiceClient”項目,在“調(diào)試”菜單中選擇“附件到進程”(服務(wù)必須事先安裝),如下所示:

3、找到“MyWindowsService.exe”,點擊“附加”按鈕,如下圖所示:

4、點擊“停止服務(wù)”按鈕,程序?qū)谠O(shè)置斷點的地方中斷,如下圖所示:

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持我們。

上一篇:C#實現(xiàn)FTP客戶端的案例

欄    目:C#教程

下一篇:關(guān)于C#連接FTP時路徑問題的解決方法

本文標題:使用C#創(chuàng)建Windows服務(wù)的實例代碼

本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/5553.html

網(wǎng)頁制作CMS教程網(wǎng)絡(luò)編程軟件編程腳本語言數(shù)據(jù)庫服務(wù)器

如果侵犯了您的權(quán)利,請與我們聯(lián)系,我們將在24小時內(nèi)進行處理、任何非本站因素導(dǎo)致的法律后果,本站均不負任何責任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有