C# WebClient 使用http免费代理。

static void Main(string[] args)
        {
            WebClient client = new WebClient();
            client.Encoding = Encoding.GetEncoding("gb2312");
            if (true)
            {
                WebProxy proxy = new WebProxy();
                proxy.UseDefaultCredentials = false;
                proxy.Address = new Uri("http://183.239.167.122:8080"); // new Uri("http://183.239.167.122:8080");
                client.Proxy = proxy;
            }

            string result = client.DownloadString("http://1212.ip138.com/ic.asp");
            Console.WriteLine(result);

            Console.WriteLine();
            Console.WriteLine("OVER");
            Console.ReadLine();
        }

  注:免费代理来源: 百度“http代理”。

posted @ 2016-04-06 14:43  Supper_litt  阅读(4172)  评论(0编辑  收藏  举报