C# post Json数据

Posted 圐圙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# post Json数据相关的知识,希望对你有一定的参考价值。

原文 http://stackoverflow.com/questions/9145667/how-to-post-json-to-the-server

 

var httpWebRequest = (HttpWebRequest)WebRequest.Create("http://url");
httpWebRequest.ContentType = "application/json";
httpWebRequest.Method = "POST";

using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))
{
  //Json写入时机
string json = "{\"user\":\"test\"," + "\"password\":\"bla\"}"; streamWriter.Write(json); streamWriter.Flush(); streamWriter.Close(); } var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse(); using (var streamReader = new StreamReader(httpResponse.GetResponseStream())) { var result = streamReader.ReadToEnd(); }

 


以上是关于C# post Json数据的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 C# 在 POST 请求中发送 json 数据 [重复]

C# post Json数据

在 PHP 中使用“POST”通过 C# 中的 JSON 检索数据库信息

C# 尝试操作Json数据进行接口开发(代码)

C# 尝试操作Json数据进行接口开发(代码)

C# 尝试操作Json数据进行接口开发(代码)