C# 小工具开发--DeBugHttp

    随着RESTful的流行,前后端分离,我们后端开发人员在开发过程中多http相关方法进行测试。这就是这个小工具的初衷。

   代码地址:https://github.com/gdoujkzz/DebugHttp  这是一个wpf小程序。

   

private string GetResponse (string method,string url,string param) {
           try
           {
                HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url);
                httpWebRequest.ContentType = "application/x-www-form-urlencoded";
                httpWebRequest.Method = method;
                httpWebRequest.Timeout = 20000;
                if (method == "POST")
                {
                    byte[] btBodys = Encoding.UTF8.GetBytes(param);
                    httpWebRequest.ContentLength = btBodys.Length;
                    httpWebRequest.GetRequestStream().Write(btBodys, 0, btBodys.Length);
                }
                //这里就是把httpwebrequest请求封装好了
                HttpWebResponse httpWebResonse = (HttpWebResponse) httpWebRequest.GetResponse();
                string responseContent = null;
                using (StreamReader streamReader = new StreamReader(httpWebResonse.GetResponseStream()))
                {
                    //流文件的读取。
                    responseContent = streamReader.ReadToEnd();
                }
                httpWebRequest.Abort();
                httpWebResonse.Close();
                return responseContent;
            }
            catch (Exception ex)
            {
                return ex.Message;
            }    

 

转载于:https://www.cnblogs.com/gdouzz/p/6086141.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值