您的位置:首页 > 其它

创建Windows服务程序实现定时操作

2011-12-06 10:16 483 查看
   在项目开发中,我们可能有这样的需求,就是每隔一段时间,由系统来执行自己预先定义好的一些任务,比如说每隔多久检查一下系统中是否有待发送的邮件,随时监控一些文件的操作等,我们可以通过创建Windows服务程序来实现,关于Windows服务程序的详细介绍请看这篇文章:用Visual C#创建Windows服务程序。看了这篇文章之后,自己动手实践了一下,现在将自己的操作步骤记录如下:

1.新建Windows项目,选择"Windows服务"类型的工程。

代码

namespace WindowsService1
{
partialclass Installer1
{
///<summary>
/// 必需的设计器变量。
///</summary>
private System.ComponentModel.IContainer components =null;

private System.ServiceProcess.ServiceProcessInstaller spInstaller;
private System.ServiceProcess.ServiceInstaller sInstaller;

///<summary>
/// 清理所有正在使用的资源。
///</summary>
///<param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protectedoverridevoid Dispose(bool disposing)
{
if (disposing && (components !=null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region 组件设计器生成的代码

///<summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///</summary>
privatevoid InitializeComponent()
{
components =new System.ComponentModel.Container();

// 创建ServiceProcessInstaller对象和ServiceInstaller对象
this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller();
this.sInstaller =new System.ServiceProcess.ServiceInstaller();

// 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息
this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;
this.spInstaller.Password =null;
this.spInstaller.Username =null;

// 设定服务的名称
this.sInstaller.ServiceName ="WindowsService1";

//设定服务启动的方式
this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;

this.Installers.AddRange(new System.Configuration.Install.Installer[] {
this.spInstaller,this.sInstaller});
}

#endregion
}
}

5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe,然后执行InstallUtil.exe+待执行的exe文件的目录,如:InstallUtil.exe F:\MyProject\WindowsService1\WindowsService1\bin\Debug\WindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。



6.启动该服务,这时打开bin\Debug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。

7.停止服务的操作也和简单,打开命令行工具,转到C:\Windows\Microsoft.NET\Framework\v4.0.30319目录,然后执行InstallUtil.exe - u F:\MyProject\WindowsService1\WindowsService1\bin\Debug\WindowsService1.exe命令就可以了。

源码下载:创建Windows服务程序
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: