码迷,mamicode.com
首页 > 其他好文 > 详细

Http请求响应

时间:2014-06-10 16:22:14      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   http   ext   get   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//   requestUrl:地址?xx=xx
 private string GetContentFromUrll(string  requestUrl)
        {
            string _StrResponse = "";
            HttpWebRequest _WebRequest = (HttpWebRequest)
 
            WebRequest.Create(requestUrl);   //创建
            _WebRequest.Method = "GET";
 
            WebResponse _WebResponse = _WebRequest.GetResponse();
            StreamReader _ResponseStream = new StreamReader(_WebResponse.GetResponseStream(), System.Text.Encoding.GetEncoding("UTF-8"));
            _StrResponse = _ResponseStream.ReadToEnd();
            _WebResponse.Close();
            _ResponseStream.Close();
            return _StrResponse;
        }

  

Http请求响应,布布扣,bubuko.com

Http请求响应

标签:class   blog   code   http   ext   get   

原文地址:http://www.cnblogs.com/Evaniko/p/3779713.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!