源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

C#获取网页HTML源码实例

  • 时间:2020-06-26 00:19 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:C#获取网页HTML源码实例
本文实例讲述了C#获取网页HTML源码的方法,分享给大家供大家参考。具体方法如下: 关键代码如下:
[u]复制代码[/u] 代码如下:
/// <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; }
测试代码如下:
[u]复制代码[/u] 代码如下:
public static void GetHtmlSourceTest() {     string _url = "http://www.baidu.com/";     string _htmlSource = HttpWebRequestUtilsV2.GetHtmlSource(_url, Encoding.UTF8);     Console.WriteLine(_htmlSource); }
测试效果如下图所示: [img]http://files.jb51.net/file_images/article/201410/20141012162221115.png?2014912163457[/img] 希望本文所述对大家的C#程序设计有所帮助
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部