程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> ASP.Net Post方式獲取數據流的一種簡單寫法

ASP.Net Post方式獲取數據流的一種簡單寫法

編輯:關於ASP.NET

       這篇文章主要介紹了ASP.Net Post方式獲取數據流的一種簡單寫法,本文直接給出代碼實例,需要的朋友可以參考下

      最近在弄一些第三方的平台,經常調用第三方的接口實現某些特定的功能

      在實現的同時基本上都需要本地的數據經過服務器在Request到第三方的服務器中處理,再返回相應的數據結構體:json/xml

      以下是我總結的一個小方法,請農友們笑納:

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 public static string PostWebReq(string PostUrl, string ParamData, Encoding DataEncode) { string ret = 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;   Stream newStream = webReq.GetRequestStream(); newStream.Write(byteArray, 0, byteArray.Length); newStream.Close();   HttpWebResponse response = (HttpWebResponse)webReq.GetResponse(); StreamReader sr = new StreamReader(response.GetResponseStream(), DataEncode); ret = sr.ReadToEnd();   sr.Close(); response.Close(); newStream.Close(); } catch (WebException ex) { Log.WriteLog(LogFile.Error, ex.Message); } finally { Log.WriteLog(LogFile.Info, ret); } return ret; }
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved