码迷,mamicode.com
首页 > Web开发 > 详细

获取网页源代码

时间:2014-09-29 10:46:10      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   sp   div   art   

bubuko.com,布布扣
 1 /// <summary>
 2 /// 获取网页源码
 3 /// </summary>
 4 /// <param name="Url">链接</param>
 5 /// <param name="CharSet">编码</param>
 6 /// <returns></returns>
 7 public static string GetSource(string Url, string CharSet = "utf-8")
 8 {
 9     using (WebClient myWebClient = new WebClient())
10     {
11         using (Stream myStream = myWebClient.OpenRead(Url))
12         {
13             using (StreamReader sr = new StreamReader(myStream, System.Text.Encoding.GetEncoding(CharSet)))
14             {
15                 return sr.ReadToEnd();
16             }
17         }
18     }
19 }
View Code

 

获取网页源代码

标签:style   blog   http   color   os   ar   sp   div   art   

原文地址:http://www.cnblogs.com/surfing/p/3999637.html

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