5

我正在尝试进行 POST,然后将 JSON 响应读入字符串。

我相信我的问题是我需要将自己的对象传递给 DataContractJsonSerializer 但我想知道是否有某种方法可以将响应转换为关联数组或某种键/值格式。

我的 JSON 格式如下: {"license":"AAAA-AAAA-AAAA-AAAA"} 我的代码如下:

using (Stream response = HttpCommands.GetResponseStream(URL, FormatRegistrationPost(name, email)))
{
   string output = new StreamReader(response).ReadToEnd();
   response.Close();

   DataContractJsonSerializer json = new DataContractJsonSerializer(typeof(string));
   MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(output));
   string results = json.ReadObject(ms) as string;

   licenseKey = (string) results.GetType().GetProperty("license").GetValue(results, null);
}
4

2 回答 2

18

我强烈建议您查看 Newtonsoft.Json:

http://james.newtonking.com/pages/json-net.aspx

NuGet:https ://www.nuget.org/packages/newtonsoft.json/

添加对项目的引用后,您只需using在文件顶部包含以下内容:

using Newtonsoft.Json.Linq;

然后在您的方法中,您可以使用:

var request= (HttpWebRequest)WebRequest.Create("www.example.com/ex.json");
var response = (HttpWebResponse)request.GetResponse();
var rawJson = new StreamReader(response.GetResponseStream()).ReadToEnd();

var json = JObject.Parse(rawJson);  //Turns your raw string into a key value lookup
string license_value = json["license"].ToObject<string>();
于 2012-10-24T02:02:54.240 回答
1

你可以用字典做这样的事情

Dictionary<string, string> values = 
JsonConvert.DeserializeObject<Dictionary<string, string>>(json);

或类似的东西,如果你已经知道你的对象

var yourobject = JsonConvert.DeserializeObject<YourObject>(json);

用这个工具

http://james.newtonking.com/projects/json/help/

参考这里 使用 JsonConvert.DeserializeObject 将 Json 反序列化为 C# POCO 类

于 2012-10-24T02:03:25.113 回答