博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WebRequest Post 及Get 数据
阅读量:4970 次
发布时间:2019-06-12

本文共 1968 字,大约阅读时间需要 6 分钟。

1  public class WebRequestHelper 2     { 3         ///  4         /// 以POST 形式请求数据 5         ///  6         ///  7         ///  8         /// 
9 public static string PostData(string RequestPara,string Url)10 {11 WebRequest hr = HttpWebRequest.Create(Url);12 13 byte[] buf = System.Text.Encoding.GetEncoding("utf-8").GetBytes(RequestPara);14 hr.ContentType = "application/x-www-form-urlencoded";15 hr.ContentLength = buf.Length;16 hr.Method = "POST";17 18 System.IO.Stream RequestStream = hr.GetRequestStream();19 RequestStream.Write(buf, 0, buf.Length);20 RequestStream.Close();21 22 System.Net.WebResponse response = hr.GetResponse();23 StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding("utf-8"));24 string ReturnVal = reader.ReadToEnd();25 reader.Close(); 26 response.Close();27 28 return ReturnVal;29 }30 31 /// 32 /// 以GET 形式获取数据33 /// 34 /// 35 /// 36 ///
37 38 public static string GetData(string RequestPara, string Url)39 {40 RequestPara=RequestPara.IndexOf('?')>-1?(RequestPara):("?"+RequestPara);41 42 WebRequest hr = HttpWebRequest.Create(Url + RequestPara);43 44 byte[] buf = System.Text.Encoding.GetEncoding("utf-8").GetBytes(RequestPara); 45 hr.Method = "GET";46 47 System.Net.WebResponse response = hr.GetResponse();48 StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.GetEncoding("utf-8"));49 string ReturnVal = reader.ReadToEnd();50 reader.Close();51 response.Close();52 53 return ReturnVal;54 }55 }

 

 

转载于:https://www.cnblogs.com/red-fox/archive/2012/07/30/2615663.html

你可能感兴趣的文章
IIS负载均衡-Application Request Route详解第六篇:使用失败请求跟踪规则来诊断ARR...
查看>>
管理信息系统 第三部分 作业
查看>>
[Leetcode Week13]Search a 2D Matrix
查看>>
查看端口占用cmd命令
查看>>
2019.01.17王苛震作业
查看>>
清除浮动
查看>>
PayPal(贝宝)支付接口、文档、IPN
查看>>
ORACLE 10G R2_执行计划中cost cardinality bytes cpu_cost io_cost解释
查看>>
本地存储
查看>>
MP3的播放与停止
查看>>
牛客(59)按之字形顺序打印二叉树
查看>>
JavaScript 图表库 xCharts
查看>>
Android项目的目录结构
查看>>
C++中“引用”的底层实现
查看>>
Spring Cloud与微服务构建:微服务简介
查看>>
Babel 是干什么的
查看>>
20180418小测
查看>>
数字三角形
查看>>
前端笔记-基础笔记
查看>>
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>