惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

博客园 - waemz

数学之美 系列十八 - 矩阵运算和文本处理中的分类问题 文本分类(二)特征权重量化器(文档转向量表示) 文本分类(一)封装分词器 转嘉士伯的Java小屋写的关于编码的文章(三)网页文件的编码 转嘉士伯的Java小屋写的关于编码的文章(二)GB2312,GBK与中文网页 转嘉士伯的Java小屋写的关于编码的文章(一)编码字符集与字符集编码的区别 SVM入门(三)线性分类器Part 2 SVM入门(一)SVM的八股简介 SVM入门(二)线性分类器Part 1 人工神经网络框架AForge学习(三):后向传播学习算法 人工神经网络框架AForge学习(二):Sigmoid激活函数 人工神经网络框架AForge学习(一) 基于朴素贝叶斯分类器的文本分类算法C#版(二) 基于朴素贝叶斯分类器的文本分类算法C#版(一) AderTemplate模版引擎使用分析(二) AderTemplate模版引擎使用分析 ASP.NET纯代码实现伪静态地址(URL重写) 深入浅出工厂模式 您未必知道的Js技巧
在Web应用程序中执行计划任务(多线程)
waemz · 2007-05-11 · via 博客园 - waemz

由于ASP.NET站点是作为Web应用程序运行的,它并不受线程的限制,因此我们可以非常方便地在Application_Start和Application_End事件中建立和销毁一个计划任务。下面就简单介绍一下在Web站点实现计划任务的方法。我们的例子是定时往文件里添加信息,作为例子,这里把当前的时间定时地写入文件中。

一个计划任务的工作单元称之为一个任务(Job),下面的代码描述了对所有任务都可以被调度引擎计划执行的一个通用的接口,这里的每个任务实现了Execute方法,供调度引擎进行调用:

public interface ISchedulerJob

{

void Execute();

}

如前所述,我们的例子是实现往文件写如字符日期,下面就是实现这一任务的方法:

public class SampleJob : ISchedulerJob

{

public void Execute()

{

//文件保存的物理路径,CSTest为虚拟目录名称,F:\Inetpub\wwwroot\CSTest为物理路径

string p = @"F:\Inetpub\wwwroot\CSTest";

//我们在虚拟目录的根目录下建立SchedulerJob文件夹,并设置权限为匿名可修改,

//SchedulerJob.txt就是我们所写的文件

string FILE_NAME = p+ "\\SchedulerJob\\SchedulerJob.txt";

//取得当前服务器时间,并转换成字符串

string c = System.DateTime.Now.ToString("yyyy-mm-dd hh:MM:ss");

//标记是否是新建文件的标量

bool flag = false;

//如果文件不存在,就新建该文件

if (!File.Exists(FILE_NAME))

{

flag = true;

StreamWriter sr = File.CreateText(FILE_NAME);

sr.Close();

}

//向文件写入内容

StreamWriter x = new StreamWriter(FILE_NAME,true,System.Text.Encoding.Default);

if(flag) x.Write("计划任务测试开始:");

x.Write("\r\n"+c);

x.Close();

}

}

接下来,我们建立一个配置对象,告诉调度引擎执行什么任务和执行的时间间隔。

public class SchedulerConfiguration

{

//时间间隔

private int sleepInterval;

//任务列表

private ArrayList jobs = new ArrayList();

public int SleepInterval { get { return sleepInterval; } }

public ArrayList Jobs { get { return jobs; } }

//调度配置类的构造函数

public SchedulerConfiguration(int newSleepInterval)

{

sleepInterval = newSleepInterval;

}

}

下面就是调度引擎,定时执行配置对象的任务

public class Scheduler

{

private SchedulerConfiguration configuration = null;

public Scheduler(SchedulerConfiguration config)

{

configuration = config;

}

public void Start()

{

while(true)

{

//执行每一个任务

foreach(ISchedulerJob job in configuration.Jobs)

{

ThreadStart myThreadDelegate = new ThreadStart(job.Execute);

Thread myThread = new Thread(myThreadDelegate);

myThread.Start();

Thread.Sleep(configuration.SleepInterval);

}

}

}

}

所有的准备工作已经完成,下面就是激活引擎的工作了。为了让我们的任务计划执行,我们在Global.asax.cs文件里的Applicatio_Start和Application_End里进行建立和销毁工作,首先建立一个调度进程运行的线程,我们这里的运行间隔时间为3秒钟。

//定义线程变量

public System.Threading.Thread schedulerThread = null;

protected void Application_Start(Object sender, EventArgs e)

{

//实例化调度配置

SchedulerConfiguration config = new SchedulerConfiguration(1000*3);

//添加任务

config.Jobs.Add(new SampleJob());

Scheduler scheduler = new Scheduler(config);

//创建 ThreadStart 委托

System.Threading.ThreadStart myThreadStart = new System.Threading.ThreadStart(scheduler.Start);

//实例化线程

System.Threading.Thread schedulerThread = new System.Threading.Thread(myThreadStart);

//启动线程

schedulerThread.Start();

}

最后还需要在程序退出时进行销毁:

protected void Application_End(Object sender, EventArgs e)

{

if (null != schedulerThread)

{

schedulerThread.Abort();

}

}

好了,在VS.NET里建立一个C#的Web应用程序工程,建立TaskScheduler.cs类,并修改相应的Global.asax.cs文件。为了能看到效果,我们再建立一个表单WebForm1.aspx,定时刷新来检查我们所记录的数据:

<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false"

Inherits="CSTest.WebForm1" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

<HTML>

<HEAD>

<title>在Web应用程序中执行计划任务的例子</title>

<meta http-equiv="refresh" content="10">

<meta name="GENERATOR" Content="Microsoft Visual Studio 7.0">

<meta name="CODE_LANGUAGE" Content="C#">

<meta name="vs_defaultClientscript" content="Javascript">

<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">

</HEAD>

<body MS_POSITIONING="GridLayout">

<form id="Form1" method="post" runat="server">

<iframe style="width:100%;height:100%" src="SchedulerJob/SchedulerJob.txt"></iframe>

</form>

</body>

</HTML>

对工程进行编译并运行,就可以看到结果了,结果如下:

计划任务测试开始:

2003-13-10 11:08:15

2003-13-10 11:08:18

2003-13-10 11:08:21

2003-13-10 11:08:24

2003-13-10 11:08:27

2003-13-10 11:08:30

需要说明的是,以上只是在Web应用程序中执行计划任务的简单例子,对于多个任务来说,需要在不同的线程内进行工作,对计划的安排也是很简单的,实际还需要站点堵塞,当机的情况。另外这里也没有进行错误的处理等工作,相信大家会写出更加完美的代码的。