[C#]GetHtmlSource_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > [C#]GetHtmlSource

[C#]GetHtmlSource

 2014/10/11 18:13:05  楚人游子  程序员俱乐部  我要评论(0)
  • 摘要:关键代码:///<summary>///获取网页HTML源码///</summary>///<paramname="url">链接eg:http://www.baidu.com/</param>///<paramname="charset">编码eg:Encoding.UTF8</param>///<returns>HTML源码</returns>
  • 标签:C#

关键代码:

class="csharpcode">        /// <summary>
        /// 获取网页HTML源码
        /// </summary>
        /// <param name="url">链接 eg:http://www.baidu.com/ </param>
        /// <param name="charset">编码 eg:Encoding.UTF8</param>
        /// <returns>HTML源码</returns>
        public static string GetHtmlSource(string url, Encoding charset)
        {

            string _html = string.Empty;
            try
            {
                HttpWebRequest _request = (HttpWebRequest)WebRequest.Create(url);
                HttpWebResponse _response = (HttpWebResponse)_request.GetResponse();
                using (Stream _stream = _response.GetResponseStream())
                {
                    using (StreamReader _reader = new StreamReader(_stream, charset))
                    {
                        _html = _reader.ReadToEnd();
                    }
                }
            }
            catch (WebException ex)
            {
                using (StreamReader sr = new StreamReader(ex.Response.GetResponseStream()))
                {
                    _html = sr.ReadToEnd();
                }
            }
            catch (Exception ex)
            {
                _html = ex.Message;
            }
            return _html;

        }

测试代码:

        public static void GetHtmlSourceTest()
        {
            string _url = "http://www.baidu.com/";
            string _htmlSource = HttpWebRequestUtilsV2.GetHtmlSource(_url, Encoding.UTF8);
            Console.WriteLine(_htmlSource);
        }

测试效果:

image

希望有所帮助!微笑

发表评论
用户名: 匿名