C#中HttpWebRequest的用法詳解

原文連接:http://www.cnblogs.com/love201314/p/5029312.htmlhtml

一、HttpWebRequest和HttpWebResponse類是用於發送和接收HTTP數據的最好選擇。web

二、命名空間:System.Netjson

三、HttpWebRequest對象不是利用new關鍵字建立的(經過構造函數)。 
而是利用Create()方法建立的。api

四、你可能預計須要顯示地調用一個「Send」方法,實際上不須要。瀏覽器

五、調用 HttpWebRequest.GetResponse()方法返回的是一個HttpWebResponse對象服務器

六、你能夠把HTTP響應的數據流 (stream)綁定到一個StreamReader對象,而後就能夠經過ReadToEnd()方法把整個HTTP響應做爲一個字符串取回。也能夠經過 StreamReader.ReadLine()方法逐行取回HTTP響應的內容。cookie

下面是HttpWebRequest的一些屬性,這些屬性對於輕量級的自動化測試程序是很是重要的。網絡

a) AllowAutoRedirect:獲取或設置一個值,該值指示請求是否應跟隨重定向響應。 
b)CookieContainer:獲取或設置與此請求關聯的cookie。 
c)Credentials:獲取或設置請求的身份驗證信息。 
d)KeepAlive:獲取或設置一個值,該值指示是否與 Internet 資源創建持久性鏈接。 
e)MaximumAutomaticRedirections:獲取或設置請求將跟隨的重定向的最大數目。 
f) Proxy:獲取或設置請求的代理信息。 
g)SendChunked:獲取或設置一個值,該值指示是否將數據分段發送到 Internet 資源。 
h)Timeout:獲取或設置請求的超時值。 
i) UserAgent:獲取或設置 User-agent HTTP 標頭的值app

C# HttpWebRequest提交數據方式其實就是GET和POST兩種函數

C# HttpWebRequest的做用: 
HttpWebRequest對HTTP協議進行了完整的封裝,對HTTP協議中的 Header, Content, Cookie 都作了屬性和方法的支持,很容易就能編寫出一個模擬瀏覽器自動登陸的程序。

C# HttpWebRequest提交數據方式: 
程序使用HTTP協議和服務器交互主要是進行數據的提交,一般數據的提交是經過 GET 和 POST 兩種方式來完成,

C# HttpWebRequest提交數據方式

1. GET 方式。 
GET 方式經過在網絡地址附加參數來完成數據的提交,好比在地址 http://www.google.com/webhp?hl=zh-CN 中,前面部分 http://www.google.com/webhp 表示數據提交的網址,後面部分 hl=zh-CN 表示附加的參數,其中 hl 表示一個鍵(key), zh-CN 表示這個鍵對應的值(value)。程序代碼以下:

HttpWebRequest req =  
(HttpWebRequest)HttpWebRequest.Create("http://www.google.com/webhp?hl=zh-CN" ); 
req.Method = "GET"; 
using (WebResponse wr = req.GetResponse()) 
{ 
   //在這裏對接收到的頁面內容進行處理 
}
-------------------------------------

string htmlStr = string.Empty;

//建立一個客戶端的Http請求實例
HttpWebRequest request = WebRequest.Create(requestUrl) as HttpWebRequest;

request.Method = "GET";

//獲取當前Http請求的響應實例
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
Stream responseStream = response.GetResponseStream();
using (StreamReader reader = new StreamReader(responseStream, Encoding.GetEncoding("UTF-8")))
{
htmlStr = reader.ReadToEnd();
}
responseStream.Close();
response.Close();

return htmlStr;

  

2. POST 方式。

POST 方式經過在頁面內容中填寫參數的方法來完成數據的提交,參數的格式和 GET 方式同樣,是相似於 hl=zh-CN&newwindow=1 這樣的結構。程序代碼以下:

string param = "hl=zh-CN&newwindow=1";        //參數
byte[] bs = Encoding.ASCII.GetBytes(param);    //參數轉化爲ascii碼
HttpWebRequest req = (HttpWebRequest) HttpWebRequest.Create("http://www.google.com/intl/zh-CN/" );  //建立request
req.Method = "POST";    //肯定傳值的方式,此處爲post方式傳值
req.ContentType = "application/x-www-form-urlencoded"; 
req.ContentLength = bs.Length; 
using (Stream reqStream = req.GetRequestStream()) 
{ 
   reqStream.Write(bs, 0, bs.Length); 
} 
using (WebResponse wr = req.GetResponse()) 
{ 
   //在這裏對接收到的頁面內容進行處理 
}

3. 使用 GET 方式提交中文數據。

GET 方式經過在網絡地址中附加參數來完成數據提交,對於中文的編碼,經常使用的有 gb2312 和 utf8 兩種,用 gb2312 方式編碼訪問的程序代碼以下:

Encoding myEncoding = Encoding.GetEncoding("gb2312");     //肯定用哪一種中文編碼方式
string address = "http://www.baidu.com/s?"+ HttpUtility.UrlEncode("參數一", myEncoding) +  "=" + HttpUtility.UrlEncode("值一", myEncoding);       //拼接數據提交的網址和通過中文編碼後的中文參數
HttpWebRequest req =   (HttpWebRequest)HttpWebRequest.Create(address);  //建立request
req.Method = "GET";    //肯定傳值方式,此處爲get方式
using (WebResponse wr = req.GetResponse()) 
{ 
   //在這裏對接收到的頁面內容進行處理 
}

  

在上面的程序代碼中,咱們以 GET 方式訪問了網址 http://www.baidu.com/s ,傳遞了參數「參數一=值一」,因爲沒法告知對方提交數據的編碼類型,因此編碼方式要以對方的網站爲標準。常見的網站中, www.baidu.com (百度)的編碼方式是 gb2312, www.google.com (谷歌)的編碼方式是 utf8。

4. 使用 POST 方式提交中文數據。

POST 方式經過在頁面內容中填寫參數的方法來完成數據的提交,因爲提交的參數中能夠說明使用的編碼方式,因此理論上能得到更大的兼容性。用 gb2312 方式編碼訪問的程序代碼以下:

Encoding myEncoding = Encoding.GetEncoding("gb2312");  //肯定中文編碼方式。此處用gb2312
string param =   HttpUtility.UrlEncode("參數一", myEncoding) +   "=" + HttpUtility.UrlEncode("值一", myEncoding) +   "&" +     HttpUtility.UrlEncode("參數二", myEncoding) +  "=" + HttpUtility.UrlEncode("值二", myEncoding); 
byte[] postBytes = Encoding.ASCII.GetBytes(param);     //將參數轉化爲assic碼
HttpWebRequest req = (HttpWebRequest)  HttpWebRequest.Create( "http://www.baidu.com/s" ); 
req.Method = "POST"; 
req.ContentType =   "application/x-www-form-urlencoded;charset=gb2312"; 
req.ContentLength = postBytes.Length; 
using (Stream reqStream = req.GetRequestStream()) 
{ 
   reqStream.Write(bs, 0, bs.Length); 
} 
using (WebResponse wr = req.GetResponse()) 
{ 
   //在這裏對接收到的頁面內容進行處理 
}

  

從上面的代碼能夠看出, POST 中文數據的時候,先使用 UrlEncode 方法將中文字符轉換爲編碼後的 ASCII 碼,而後提交到服務器,提交的時候能夠說明編碼的方式,用來使對方服務器可以正確的解析。

以上列出了客戶端程序使用HTTP協議與服務器交互的狀況,經常使用的是 GET 和 POST 方式。

如今流行的 WebService 也是經過 HTTP 協議來交互的,使用的是 POST 方法。與以上稍有所不一樣的是, WebService 提交的數據內容和接收到的數據內容都是使用了 XML 方式編碼。因此, HttpWebRequest 也可使用在調用 WebService 的狀況下。

C# HttpWebRequest提交數據方式的基本內容就向你介紹到這裏,但願對你瞭解和學習C# HttpWebRequest提交數據方式有所幫助。

#region 公共方法
    /// <summary>
    /// Get數據接口
    /// </summary>
    /// <param name="getUrl">接口地址</param>
    /// <returns></returns>
    private static string GetWebRequest(string getUrl)
    {
        string responseContent = "";

        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(getUrl);
        request.ContentType = "application/json";
        request.Method = "GET";

        HttpWebResponse response = (HttpWebResponse)request.GetResponse();
        //在這裏對接收到的頁面內容進行處理
        using (Stream resStream = response.GetResponseStream())
        {
            using (StreamReader reader = new StreamReader(resStream, Encoding.UTF8))
            {
                responseContent = reader.ReadToEnd().ToString();
            }
        }
        return responseContent;
    }
    /// <summary>
    /// Post數據接口
    /// </summary>
    /// <param name="postUrl">接口地址</param>
    /// <param name="paramData">提交json數據</param>
    /// <param name="dataEncode">編碼方式(Encoding.UTF8)</param>
    /// <returns></returns>
    private static string PostWebRequest(string postUrl, string paramData, Encoding dataEncode)
    {
        string responseContent = string.Empty;
        try
        {
            byte[] byteArray = dataEncode.GetBytes(paramData); //轉化
            HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create(new Uri(postUrl));
            webReq.Method = "POST";
            webReq.ContentType = "application/x-www-form-urlencoded";
            webReq.ContentLength = byteArray.Length;
            using (Stream reqStream = webReq.GetRequestStream())
            {
                reqStream.Write(byteArray, 0, byteArray.Length);//寫入參數
                                                                //reqStream.Close();
            }
            using (HttpWebResponse response = (HttpWebResponse)webReq.GetResponse())
            {
                //在這裏對接收到的頁面內容進行處理
                using (StreamReader sr = new StreamReader(response.GetResponseStream(), Encoding.Default))
                {
                    responseContent = sr.ReadToEnd().ToString();
                }
            }
        }
        catch (Exception ex)
        {
            return ex.Message;
        }
        return responseContent;
    }

    #endregion

  

OAuth頭部

//構造OAuth頭部 
StringBuilder oauthHeader = new StringBuilder();
oauthHeader.AppendFormat("OAuth realm=\"\", oauth_consumer_key={0}, ", apiKey);
oauthHeader.AppendFormat("oauth_nonce={0}, ", nonce);
oauthHeader.AppendFormat("oauth_timestamp={0}, ", timeStamp);
oauthHeader.AppendFormat("oauth_signature_method={0}, ", "HMAC-SHA1");
oauthHeader.AppendFormat("oauth_version={0}, ", "1.0");
oauthHeader.AppendFormat("oauth_signature={0}, ", sig);
oauthHeader.AppendFormat("oauth_token={0}", accessToken);

//構造請求 
StringBuilder requestBody = new StringBuilder("");
Encoding encoding = Encoding.GetEncoding("utf-8");
byte[] data = encoding.GetBytes(requestBody.ToString());

// Http Request的設置 
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri);
request.Headers.Set("Authorization", oauthHeader.ToString());
//request.Headers.Add("Authorization", authorization); 
request.ContentType = "application/atom+xml";
request.Method = "GET";

  

C#經過WebClient/HttpWebRequest實現http的post/get方法

1.POST方法(httpWebRequest)

//body是要傳遞的參數,格式"roleId=1&uid=2"
//post的cotentType填寫:"application/x-www-form-urlencoded"
//soap填寫:"text/xml; charset=utf-8"
public static string PostHttp(string url, string body, string contentType)
{
    HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url);

    httpWebRequest.ContentType = contentType;
    httpWebRequest.Method = "POST";
    httpWebRequest.Timeout = 20000;

    byte[] btBodys = Encoding.UTF8.GetBytes(body);
    httpWebRequest.ContentLength = btBodys.Length;
    httpWebRequest.GetRequestStream().Write(btBodys, 0, btBodys.Length);

    HttpWebResponse httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse();
    StreamReader streamReader = new StreamReader(httpWebResponse.GetResponseStream());
    string responseContent = streamReader.ReadToEnd();

    httpWebResponse.Close();
    streamReader.Close();
    httpWebRequest.Abort();
    httpWebResponse.Close();

    return responseContent;
}
相關文章
相關標籤/搜索