C# - 反序列化JSON对象

时间:2018-03-14 01:57:13

标签: c#

我正在尝试将以下json绑定到列表,请注意每个字符串可以包含多个元素,因此列表将如下所示:

红色,黑色

蓝色

橙,蓝,红,黑,粉

[
 {
    "shoes": [
      "red",
      "black"
    ]
  },
  {
    "shoes": [
      "blue"
    ]
  },
  {
    "shoes": [
      "orange",
      "blue",
      "red",
      "black",
      "pink"
    ]
  }
]

这是我到目前为止所做的,并不多:

public class Shoes
{
   [JsonProperty("colors")]
   public IList<string> Colors { get; set; }
}
在主要内部,我正在调用实际链接(不幸的是我无法在此处提供)

using (WebClient wc = new WebClient())
{               
    string json = wc.DownloadString(@"JSONlink");
    Shoes shoe = JsonConvert.DeserializeObject<Shoes>(json);
}

它给了我以下错误:

Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'xxx' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly.

我在这个领域没有很多经验,所以任何帮助都会很棒。感谢。

3 个答案:

答案 0 :(得分:4)

示例JSON包含一个对象列表,每个对象都代表一个Shoe。表示JSON中颜色集合的属性称为shoes,因此该类应如下所示:

public class Shoe
{
   [JsonProperty("shoes")]
   public IList<string> Colors { get; set; }
}

您还需要反序列化到一组鞋子而不是单个实例:

var shoes = JsonConvert.DeserializeObject<List<Shoe>>(json);

答案 1 :(得分:1)

与JSON相比,您的数据模型看起来不正确。我建议去json2csharp页面并在那里粘贴JSON以获得C#生成的类

我已经为你做了那件事:

public class RootObject
{
    public List<string> shoes { get; set; }
}

答案 2 :(得分:1)

您的C#类错误。

使用此课程:

public class Result
{
    public List<string> shoes { get; set; }
}

反序列化:

using (WebClient wc = new WebClient())
{               
    string json = wc.DownloadString(@"JSONlink");
    var result = JsonConvert.DeserializeObject<List<Result>>(json);
}