溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

HttpRequest Get和Post怎么調(diào)用其他頁面

發(fā)布時間:2021-07-22 18:19:44 來源:億速云 閱讀:124 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“HttpRequest Get和Post怎么調(diào)用其他頁面”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

復(fù)制代碼 代碼如下:


  //Get請求方式
    private string RequestGet(string Url)
    {
        string PageStr = string.Empty;//用于存放還回的html
        Uri url = new Uri(Url);//Uri類 提供統(tǒng)一資源標(biāo)識符 (URI) 的對象表示形式和對 URI 各部分的輕松訪問。就是處理url地址
        try
        {
            HttpWebRequest httprequest = (HttpWebRequest)WebRequest.Create(url);//根據(jù)url地址創(chuàng)建HTTpWebRequest對象
            #region 參數(shù)設(shè)置
            httprequest.Method = "get";

            //---------------------------------------------設(shè)定一些參數(shù)(不必要可以)
            //httprequest.KeepAlive = false;//持久連接設(shè)置為false
            //httprequest.ProtocolVersion = HttpVersion.Version11;// 網(wǎng)絡(luò)協(xié)議的版本
            //httprequest.Proxy = WebProxy.GetDefaultProxy();//服務(wù)器代理
            //httprequest.ContentType = "application/x-www-form-urlencoded";//http 頭
            //httprequest.AllowAutoRedirect = true;
            //httprequest.MaximumAutomaticRedirections = 10;
            //httprequest.Timeout = 30000;//設(shè)定超時十秒(毫秒)
            //httprequest.UserAgent = "mozilla/4.0 (compatible; msie 6.0; windows nt 5.1)"; //瀏覽器
            //=================================================
            #endregion
            HttpWebResponse response = (HttpWebResponse)httprequest.GetResponse();//使用HttpWebResponse獲取請求的還回值
            Stream steam = response.GetResponseStream();//從還回對象中獲取數(shù)據(jù)流
            StreamReader reader = new StreamReader(steam, Encoding.GetEncoding("gb2312"));//讀取數(shù)據(jù)Encoding.GetEncoding("gb2312")指編碼是gb2312,不讓中文會亂碼的
            PageStr = reader.ReadToEnd();
            reader.Close();
        }
        catch (Exception e)
        {
            PageStr += e.Message;
        }
        return PageStr;
    }

復(fù)制代碼 代碼如下:


//Post請求方式,于Get的方式寫法相似,所以解釋就些少一點了
 

  private string RequestPost(string Url,string Context)//兩個參數(shù)分別是Url地址和Post過去的數(shù)據(jù)
    {
        string PageStr=string.Empty;
        Uri url = new Uri(Url);
        byte[] reqbytes=Encoding.ASCII.GetBytes(Context);
        try
        {
            HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
            req.Method = "post";
            req.ContentType = "application/x-www-form-urlencoded";
            req.ContentLength = reqbytes.Length;
            Stream stm = req.GetRequestStream();
            stm.Write(reqbytes, 0, reqbytes.Length);

            stm.Close();
            HttpWebResponse wr = (HttpWebResponse)req.GetResponse();
            Stream stream = wr.GetResponseStream();
            StreamReader srd= new StreamReader(stream,Encoding.GetEncoding("gb2312"));
            PageStr += srd.ReadToEnd();
            stream.Close();
            srd.Close();
        }
        catch (Exception e)
        {
            PageStr += e.Message;
        }
        return PageStr;
    }

復(fù)制代碼 代碼如下:


public string WebClientGet(string url)
        {
            var client = new WebClient();
            client.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
            var stream = client.OpenRead(url);
            if (stream == null) return "";
            var reader = new StreamReader(stream, Encoding.Default);
            var result = reader.ReadToEnd();
            stream.Close();
            reader.Close();
            return result;
        }

“HttpRequest Get和Post怎么調(diào)用其他頁面”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI