c# winfrom 下载网页源代码

第一种:

/// <summary>
/// 下载网页源代码
/// </summary>
/// <param name="Url">网页路径</param>
/// <returns></returns>
private string DownloadCode(string Url)
{
try
{
WebClient webClient = new WebClient();
Byte[] pageData = webClient.DownloadData(Url);
return Encoding.GetEncoding("utf-8").GetString(pageData);
}
catch (Exception ec)
{
throw new Exception(ec.Message.ToString());
}

 


 

 

第二种:

 

        /// <summary>
        /// 请求地址,返回html代码
        /// </summary>
        /// <param name="url">地址</param>
        /// <param name="timeOut">设置请求的超时时间,1000=1秒</param>
        /// <returns></returns>
        public static string HttpGet(string url,int timeOut)
        {
            try
            {
                ServicePointManager.SecurityProtocol = (SecurityProtocolType)192 | (SecurityProtocolType)768 | (SecurityProtocolType)3072;
                string html;
                HttpWebRequest Web_Request = (HttpWebRequest)WebRequest.Create(url);

                Web_Request.AllowAutoRedirect = false;
                //设置请求超时时间
                Web_Request.Timeout = timeOut;
                //请求方式GET,POST
                Web_Request.Method = "GET";
                //请求的身份
                Web_Request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36";
                //添加请求头信息
                Web_Request.Headers.Add("Accept-Encoding", "gzip, deflate");
                Web_Request.ContentType = "application/x-www-form-urlencoded";
                //Web_Request.Credentials = CredentialCache.DefaultCredentials;

                //设置代理属性WebProxy-------------------------------------------------
                //WebProxy proxy = new WebProxy("111.13.7.120", 80);
                //在发起HTTP请求前将proxy赋值给HttpWebRequest的Proxy属性
                //Web_Request.Proxy = proxy;

                HttpWebResponse Web_Response = (HttpWebResponse)Web_Request.GetResponse();

                if (Web_Response.ContentEncoding.ToLower() == "gzip")  // 如果使用了GZip则先解压
                {
                    using (Stream Stream_Receive = Web_Response.GetResponseStream())
                    {
                        using (var Zip_Stream = new GZipStream(Stream_Receive, CompressionMode.Decompress))
                        {
                            using (StreamReader Stream_Reader = new StreamReader(Zip_Stream, Encoding.Default))
                            {
                                html = Stream_Reader.ReadToEnd();
                            }
                        }
                    }
                }
                else
                {
                    using (Stream Stream_Receive = Web_Response.GetResponseStream())
                    {
                        using (StreamReader Stream_Reader = new StreamReader(Stream_Receive, Encoding.Default))
                        {
                            html = Stream_Reader.ReadToEnd();
                        }
                    }
                }

                return html;
            }
            catch (Exception)
            {
                return "error";
            }

        }

 

转载于:https://www.cnblogs.com/yinmu/p/10994088.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值