文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>c#下载网页源码的多种方法

c#下载网页源码的多种方法

时间:2010-08-22  来源:Nuke'Blog

HttpRequest:

 

代码 static class WebFunc   
{   
    private static CookieContainer cookie = new CookieContainer();   
    private static string contentType = "application/x-www-form-urlencoded";   
    private static string accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/x-silverlight, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-silverlight-2-b1, */*";   
    private static string userAgent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)";   
  
    public static string GetHtmlEx(string url, Encoding encoding)   
    {   
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);   
        request.UserAgent = userAgent;   
        request.ContentType = contentType;   
        request.CookieContainer = cookie;   
        request.Accept = accept;   
        request.Method = "get";   
  
        WebResponse response = request.GetResponse();   
        Stream responseStream = response.GetResponseStream();   
        StreamReader reader = new StreamReader(responseStream, encoding);   
        String html = reader.ReadToEnd();   
        response.Close();   
  
        return html;   
    }   
}  

 

WebClient:

 

 

System.Net.WebClient wc = new System.Net.WebClient();   
Byte[] pageData = wc.DownloadData("网页地址");   
string s= System.Text.Encoding.Default.GetString(pageData);  

 

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载