码迷,mamicode.com
首页 > Windows程序 > 详细

c#获取网页源代码

时间:2015-08-13 12:02:13      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

c#获取网页源代码

 1         /// <summary>
 2         /// 获取html信息
 3         /// </summary>
 4         private string GetHtmlText(string url)
 5         {
 6             WebRequest req = WebRequest.Create(url);
 7             WebResponse res = req.GetResponse();
 8             Stream resStream = res.GetResponseStream();
 9             StreamReader sr = new StreamReader(resStream, Encoding.UTF8);
10             string contentHtml = sr.ReadToEnd();    //读取网页的源代码   
11             return contentHtml;
12         }    

根据StreamReader,根据流直接读取网页源代码

c#获取网页源代码

标签:

原文地址:http://www.cnblogs.com/binglab/p/4726694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!