C#保存指定Url页面源码

80酷酷网    80kuku.com

  页面

private string GetHTML(string url)
  {

   System.Net.WebClient client = new System.Net.WebClient();

   try
   {
    byte[] buf  = client.DownloadData(url);
   
    //message.Text = System.Text.Encoding.GetEncoding("GB2312").GetString(buf);
    return System.Text.Encoding.GetEncoding("GB2312").GetString(buf);

   }
   catch( Exception err)
   {
    message.Text = err.Message;
   }
   return null;
           
  } 


分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: