标签: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; }
标签:style blog http io color os sp for on
原文地址:http://www.cnblogs.com/weihui2013/p/4137210.html