控件中国网现已改版,您看到的是老版本网站的镜像,系统正在为您跳转到新网站首页,请稍候.......
中国最专业的商业控件资讯网产品咨询电话:023-67870900 023-67871946
产品咨询EMAIL:SALES@COMPONENTCN.COM

C# 多线程 HTTP request

作者:佚名 出处:互联网 2011年08月29日 阅读:

C# 多线程 HTTP request
 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using System.Net;

 //by  wgscd

//2011-8-25

namespace TesMutiRequest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            delDisplay = new deldisp(display);
        }


        delegate void deldisp(string strInput);
      
        deldisp delDisplay;

        Util tool = new Util();

        private void button1_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < 100; i++)
            {
                Thread th = new Thread(new ThreadStart(doLoadpage));
                th.Start();

            }

 

        }


        int icount = 0;

        void doLoadpage() {


            Random rnd = new Random();
   
            while  (true)
            {

               icount++;
                string strResult = tool.getPage("http://www.112.com/?t=" + rnd.Next(12222, 45555).ToString(),"get",null );
                if (strResult.StartsWith("err"))
                {
                    display(icount.ToString()+" : "+strResult);

                }

                else
                {

                    display(icount.ToString() + " : ok");
                }

                Thread.Sleep(122);
           

            }

       
       
       
        }

 

        void display(string strInput)
        {

            if (InvokeRequired)
            {

                Invoke(delDisplay, strInput);


            }
            else
            {
                txtReport.AppendText("[" + DateTime.Now.ToString() + "]" + strInput + "\r\n");
            }


        }

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {


            Application.ExitThread();

          
        }

 

    }
}

 

-----------------------------------

 

using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
using System.Threading;


namespace TesMutiRequest
{
    class Util


    {

        public Util() {

            proxy.Credentials = new NetworkCredential("wgscd","32423432");

        }

        WebProxy proxy = new WebProxy("proxy.cd.ncsi.com.cn",8080);

        public string getPage(string strUrl, string strMethod, byte[] strData)
        {

            try
            {
                WebClient wc = new WebClient();

//使用代理
                wc.Proxy = proxy;  
                //wc.Headers.Add("Set-Cookie", Common.cookie);

                wc.Headers.Add("Method", strMethod);
                wc.Encoding = Encoding.GetEncoding("gb2312");
                wc.Headers.Add("ContentType", "application/x-www-form-urlencoded");

                // wc.Headers.Add("AcceptEncoding", "gzip,deflate,sdch");

                if (strMethod.ToUpper() == "POST")
                {
                    return Encoding.UTF8.GetString(wc.UploadData(strUrl, strData));

                }
                else {

                    return wc.DownloadString(strUrl);
               
                }

            }
            catch (Exception ex)
            {

                return "err:" + ex.Message;

 

            }


        }

 

    }
}
 

热推产品

  • ActiveReport... 强大的.NET报表设计、浏览、打印、转换控件,可以同时用于WindowsForms谀坔攀戀Forms平台下......
  • AnyChart AnyChart使你可以创建出绚丽的交互式的Flash和HTML5的图表和仪表控件。可以用于仪表盘的创......
首页 | 新闻中心 | 产品中心 | 技术文档 | 友情连接 | 关于磐岩 | 技术支持中心 | 联系我们 | 帮助中心 Copyright-2006 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 电话:023 - 67870900 传真:023 - 67870270 产品咨询:sales@componentcn.com 渝ICP备12000264号 法律顾问:元炳律师事务所 重庆市江北区塔坪36号维丰创意绿苑A座28-5 邮编:400020
在线客服
在线客服系统
在线客服
在线客服系统