求一个c#的 post请求 json 并且接收返回json数据的一个demo。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求一个c#的 post请求 json 并且接收返回json数据的一个demo。相关的知识,希望对你有一定的参考价值。
参考技术A public string HttpPost(string url,string data)HttpWebRequest request=(HttpWebRequest)WebRequest.Create(url);
request.ContentType="application/json";
request.Method="POST";
byte[] buffer=Encoding.UTF8.GetBytes(data);
using(Stream stream=request.GetRequestStream())
stream.Write(buffer,0,buffer.Length);
HttpWebResponse response=(HttpWebResponse)request.GetResponse();
string result=string.Empty;
using(StreamReader reader=new StreamReader(response.GetResponseStream()))
result=reader.ReadToEnd();
return result;
本回答被提问者采纳
以上是关于求一个c#的 post请求 json 并且接收返回json数据的一个demo。的主要内容,如果未能解决你的问题,请参考以下文章
设计一个java接口,接收json,并且将处理结果按json的格式返回
Java发送POST请求,参数为JSON格式,并接收返回JSON数据