C#接口Post数据
标签:col type data sts create oid res 上传 adt
1 ///
2 /// 上传数据
3 ///
4 ///
5 ///
6 ///
7 ///
8 ///
9 public void PostData(int UserId, int PageId, string Comment, DateTime CommentTime)
10 {
11 HttpWebRequest wReq = (HttpWebRequest)WebRequest.Create("http://localhost:37831/api/Values");
12
13 wReq.Method = "Post";
14
15 wReq.ContentType = "application/json";
16
17
18 byte[] data = Encoding.Default.GetBytes("{\"UserId\":\"" + UserId + "\",\"PageId\":\"" + PageId + "\",\"Comment\":\"" + Comment + "\",\"CommentTime\":\"" + CommentTime + "\"}");
19 wReq.ContentLength = data.Length;
20 Stream reqStream = wReq.GetRequestStream();
21 reqStream.Write(data, 0, data.Length);
22 reqStream.Close();
23 using (StreamReader sr = new StreamReader(wReq.GetResponse().GetResponseStream()))
24 {
25 string result = sr.ReadToEnd();
26 }
27 }
C#接口Post数据
标签:col type data sts create oid res 上传 adt
原文地址:http://www.cnblogs.com/yishilin/p/7742170.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
C#接口Post数据
文章链接:http://soscw.com/index.php/essay/81920.html
评论