码迷,mamicode.com
首页 > Web开发 > 详细

post传输数据给指定的url并返回值

时间:2014-12-02 14:50:15      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   os   sp   for   on   

private string PostData(string serverName,string postData)
    {
        postData = "body="+postData;
        UTF8Encoding encoding = new UTF8Encoding();
        byte[] data = encoding.GetBytes(postData);
        string realUrl = url + "service=" + serverName;
        HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(realUrl);
        myRequest.Method = "POST";
        myRequest.ContentType = "application/x-www-form-urlencoded";
        myRequest.ContentLength = data.Length;
        Stream newStream = myRequest.GetRequestStream();
        newStream.Write(data, 0, data.Length);
        newStream.Close();
        HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
        StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);
        string content = reader.ReadToEnd();
        reader.Close();
        return content;
    }

 

post传输数据给指定的url并返回值

标签:style   blog   http   io   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/weihui2013/p/4137210.html

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