您现在的位置是:网站首页> 编程资料编程资料
ASP.Net Post方式获取数据流的一种简单写法_实用技巧_
2023-05-24
321人已围观
简介 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; } 您可能感兴趣的文章:
相关内容
- web.config使用方法指南_实用技巧_
- ASP.Net Post方式获取数据流的一种简单写法_实用技巧_
- asp.net通过配置文件连接Access的方法_实用技巧_
- asp.net通过配置文件连接Access的方法_实用技巧_
- asp.net水晶报表参数字段在代码中赋值的方法_实用技巧_
- ASP.NET XmlDocument类详解_实用技巧_
- ASP.NET实现基于Forms认证的WebService应用实例_实用技巧_
- asp.net计算每个页面执行时间的方法_实用技巧_
- asp.net动态加载自定义控件的方法_实用技巧_
- asp.net为网页动态添加description描述信息的方法_实用技巧_
