您现在的位置是:网站首页> 编程资料编程资料
ASP.Net Post方式获取数据流的一种简单写法_实用技巧_
2023-05-24
291人已围观
简介 ASP.Net Post方式获取数据流的一种简单写法_实用技巧_
最近在弄一些第三方的平台,经常调用第三方的接口实现某些特定的功能
在实现的同时基本上都需要本地的数据经过服务器在Request到第三方的服务器中处理,再返回相应的数据结构体:json/xml
以下是我总结的一个小方法,请农友们笑纳:
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; } 您可能感兴趣的文章:
相关内容
- ASP.NET实现二维码(QRCode)的创建和读取实例_实用技巧_
- ASP.NET中集成百度编辑器UEditor_实用技巧_
- asp.net实现文件无刷新上传方法汇总_实用技巧_
- ASP.Net刷新页面后自动滚动到原来位置方法汇总_实用技巧_
- ASP.NET中的Cache使用介绍_实用技巧_
- ASP.NET OutputCache详解_实用技巧_
- ASP.NET中Session和Cache的区别总结_实用技巧_
- ASP.NET中配合JS实现页面计时(定时)自动跳转_实用技巧_
- asp.net利用cookie保存用户密码实现自动登录的方法_实用技巧_
- .NET下文本相似度算法余弦定理和SimHash浅析及应用实例分析_实用技巧_
