最大的网站源码资源下载站,
c#如何定时执行程序(例如每天晚上12:00)
--------------------------------------------------------------------------------
类似于java里面的timer.schedule timetask
谢谢
--------------------------------------------------------------------------------
c#也有timer~~
system.timer
或者是 system.theading.timer
具体用法可以查询下msdn
--------------------------------------------------------------------------------
使用timer
system.timers.timer atimer = new system.timers.timer();
public rechargefrm()
{
//
// windows 窗体设计器支持所必需的
//
initializecomponent();
components=null;
autotime.selectedindex=0;
atimer.elapsed+=new elapsedeventhandler(ontimedevent);
// create a new timer with interval set to 3 seconds.
//
// todo: 在 initializecomponent 调用后添加任何构造函数代码
//
}
--------------------------------------------------------------------------------
// only raise the event the first time interval elapses.
atimer.autoreset = true;
atimer.enabled = flag;
//atimer.interval=int32.parse(autotime.selecteditem.tostring())*300;//9s
atimer.interval=int32.parse(autotime.selecteditem.tostring())*1000*60;//30m
//console.writeline("press /'q/' to quit the sample.");
//while(console.read()!='q');
--------------------------------------------------------------------------------
c#也有timer,另外也可以用thread,或者windows的计划任务
private timer _timer;
private int _interval=30000;
_timer = new timer();
_timer.enabled = true;
_timer.interval = _interval;
_timer.elapsed += new elapsedeventhandler(timer_elapsed);
private void timer_elapsed(object sender, elapsedeventargs e)
{
//todo something
}
--------------------------------------------------------------------------------
最简便的方法就是将定时执行交给windows的计划任务来完成;
或者实现一个windows服务
--------------------------------------------------------------------------------
windows的计划任务是个不错的方法!
--------------------------------------------------------------------------------
那如何指定每天晚上12:00执行?
或者说晚上12:00第一次执行,然后每3小时执行一次
--------------------------------------------------------------------------------
我现在需要指定 第一次程序执行的具体时间
--------------------------------------------------------------------------------
上面的方法都是延迟在什么时候发生的,楼主要的是”按时“执行的,
up一下。
--------------------------------------------------------------------------------
用计划任务不就可以啦?自己写的话要写windows服务。
--------------------------------------------------------------------------------
还是timer控制比较好吧.
--------------------------------------------------------------------------------
ohyear()理解我的意思了
计划任务根本不可行,因为我的应用是asp.net,而且是放在虚拟主机上
timer控制只能实现定时执行,不能指定具体开始执行的时间,例如晚上12:00开始执行
--------------------------------------------------------------------------------
stringcurrtime=system.datetime.now.toshorttimestring();
string s="12:00";
if( currtime==s)
{ //程序执行代码
}
--------------------------------------------------------------------------------
xjpeng(海风) 的改一下:
private timer _timer;
private int _interval=30000;
_timer = new timer();
_timer.enabled = true;
_timer.interval = _interval;
_timer.elapsed += new elapsedeventhandler(timer_elapsed);
private void timer_elapsed(object sender, elapsedeventargs e)
{
//todo something
}
在todo something那里写下面的:
stringcurrtime=system.datetime.now.toshorttimestring();
string s="12:00";
if( currtime==s)
{ //程序执行代码
}
这样应该可以了吧?
--------------------------------------------------------------------------------
up
--------------------------------------------------------------------------------
mark
--------------------------------------------------------------------------------
最简便的方法就是将定时执行交给windows的计划任务来完成;
或者实现一个windows服务
----------------------------------------------------------
how to implement the windows servic?
my email is: [email protected]
please contact me if you know it!
thank you
--------------------------------------------------------------------------------
学习
--------------------------------------------------------------------------------
得到时间的办法可以执行
要是此时c#程序已经关闭了呢?怎么得到时间
--------------------------------------------------------------------------------
还是只能加入计划任务吧
--------------------------------------------------------------------------------
egxsun():
这样子可行是可行,程序看上去总是有点土
看来.net的类库里面没提供类似于java的方法
--------------------------------------------------------------------------------
关注!
--------------------------------------------------------------------------------
关注。。。
同样的问题:
如果机器程序都关闭了,system.time还能取得吗?
--------------------------------------------------------------------------------
up
--------------------------------------------------------------------------------
asp.net做不了。iis端不能主动做任何事的。要不你就在自己机器上写个计划任务每天定时去请求那个虚拟主机一下,让它执行事先写好的任务。
所谓定时12点一般也不过是用timer,隔个几秒钟去问一下系统到没到12点啊?到了就执行这种。
--------------------------------------------------------------------------------
www.moblog.net.cn/sunshine.com这个软件定时任务 功能 而且是 不用编译入程序 直接用反射调用你的dll
--------------------------------------------------------------------------------
up
--------------------------------------------------------------------------------
msdn
--------------------------------------------------------------------------------
直接用c#自己的timer类就完全可以实现的?gt;>n乙丫芎玫目刂屏耍?nbsp;而且是很复杂的控制。没有问题的。
--------------------------------------------------------------------------------
调用外部命令我知道~用at 命令
具体用法你加个/? 看下帮助!
--------------------------------------------------------------------------------
虚拟主机吗?asp.net可不行
--------------------------------------------------------------------------------
关注
--------------------------------------------------------------------------------
还是做个启动服务
--------------------------------------------------------------------------------
我一直用windows计划任务进行自动记费系统的运行!效果很好!
--------------------------------------------------------------------------------
gz
--------------------------------------------------------------------------------
控制面板-〉任务计划-〉添加任务-〉选择你的程序,设置时间
--------------------------------------------------------------------------------
学习
--------------------------------------------------------------------------------
使用windows自己的东西
--------------------------------------------------------------------------------
windows service
windows schedule
sql dts job
...
--------------------------------------------------------------------------------
最简单的方法~把你要执行的程序语句写在一个事件里面(就象button_onclick),然后用timer的tick调用那个事件就可以了~(当然你要给timer的interval属性赋上时间它是以毫秒计算的)用timer的enabled
来控制你是否执行你的事件~
不知是否对你有帮助~我就是这么用的~呵呵~
--------------------------------------------------------------------------------
写到计划任务里面去嘛
我在用c#.net开发bs结构程序中遇到一个问题,怎样能够不打开页面的情况下查询数据库并执行特定的操作,经过网上查询和试验得出如下代码
更改 global.asax.cs 文件如下
using system;
using system.collections;
using system.componentmodel;
using system.web;
using system.web.sessionstate;
using system.timers;
using system.data;
using system.data.sqlclient;
namespace sms_joke
{
/// <summary>
/// global 的摘要说明。
/// </summary>
public class global : system.web.httpapplication
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private system.componentmodel.icontainer components = null;
public global()
{
initializecomponent();
}
protected void application_start(object sender, eventargs e)
{
settimer();
}
protected void session_start(object sender, eventargs e)
{
}
protected void application_beginrequest(object sender, eventargs e)
{
}
protected void application_endrequest(object sender, eventargs e)
{
}
protected void application_authenticaterequest(object sender, eventargs e)
{
}
protected void application_error(object sender, eventargs e)
{
}
protected void session_end(object sender, eventargs e)
{
}
protected void application_end(object sender, eventargs e)
{
}
public static void settimer()
{
system.timers.timer atimer = new system.timers.timer();
atimer.elapsed += new elapsedeventhandler(ontimer);
atimer.interval = 5000;
atimer.enabled = true;
}
public static void ontimer(object source, elapsedeventargs e)
{
system.data.sqlclient.sqlconnection sqlconnection1;
system.data.sqlclient.sqlcommand sqlcommand1;
string customsetting = system.configuration.configurationsettings.appsettings["sqlstr"];
sqlconnection1 = new sqlconnection();
sqlconnection1.connectionstring = customsetting ;
sqlconnection1.open();
string str = "update table1 set js = js + 1 " ;
sqlcommand1 = new sqlcommand(str,sqlconnection1) ;
sqlcommand1.executenonquery();
sqlconnection1.close();
}
#region web 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void initializecomponent()
{
this.components = new system.componentmodel.container();
}
#endregion
}
}
http://www.zhinest.com/document/web/200572092418.htm
http://www.rsblog.net/user1/3/archives/2005/265.html
http://blog.joycode.com/percyboy/archive/2004/08/21/31240.aspx
http://blog.joycode.com/yaodong/articles/25845.aspx
新闻热点
疑难解答