winform 多线程定时执行

本文介绍了如何在WinForm应用程序中使用多线程和Timer组件实现定时从HTTP源获取数据。通过创建后台线程和设置Timer,每隔5秒执行一次getJson方法,该方法发送GET请求到指定URL并解析返回的JSON数据。同时,文章提到了如何通过dispose()方法来停止线程执行。
摘要由CSDN通过智能技术生成
using System.Threading;//引用命名空间
//全局
Thread mythread1;
System.Threading.Timer timer;
//load加载事件
private void MainForm_Load(object sender, EventArgs e)
{
    mythread1 = new Thread(new ThreadStart(RunMyThread1));
    mythread1.IsBackground = true;
    mythread1.Start();
}


private void RunMyThread1()
{
    int time =5000; //定义5秒一次
    TimerCallback timerDelagete = new TimerCallback(getJson);
    timer = new System.Threading.Timer(timerDelagete, null, time, time);
}



private void getjson()
{
    HttpWebRequest webRequest;
    string url ="http://.......com";
    webRequest = (HttpWebRequest)WebRequest.Create(url);
    webRequest.Method = "GET";
    webRequest.ContentType = "application/x-www-form-urlencoded";

    using (HttpWebResponse response = (HttpWebResponse)webRequest.GetResponse())
 
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值