首页 > 开发 > 综合 > 正文

C#保存指定Url页面源码

2024-07-21 02:26:43
字体:
来源:转载
供稿:网友

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;
           
  } 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表