我在json中收到一些数据(我无法控制数据的呈现方式)。
可以使用JSON.NET库中的JsonConvert.DeserializeObject方法对其进行反序列化吗?
"{'episodes':{'1':true,'2':true,'3':true,'4':true,'5':true,'6':true,'7':true,'8':true,'9':true,'10':true,'11':true,'12':true,'13':true,'14':true,'15':true,'16':true,'17':true,'18':true,'19':true,'20':true,'21':true,'22':true,'23':true,'24':true}}"
我的意思是,我做不了类似的事情:
public class Episodes {
public bool 1;
public bool 2;
public bool 3;
...
}
此外,这不起作用:
public class Episode
{
[JsonProperty("1")]
public bool One { get; set; }
[JsonProperty("2")]
public bool Two { get; set; }
[JsonProperty("3")]
public bool Three { get; set; }
[JsonProperty("4")]
public bool Four { get; set; }
[JsonProperty("5")]
public bool Five { get; set; }
[JsonProperty("6")]
public bool Six { get; set; }
[JsonProperty("7")]
public bool Seven { get; set; }
[JsonProperty("8")]
public bool Eight { get; set; }
[JsonProperty("9")]
public bool Nine { get; set; }
[JsonProperty("10")]
public bool Ten { get; set; }
[JsonProperty("11")]
public bool Eleven { get; set; }
[JsonProperty("12")]
public bool Twelve { get; set; }
[JsonProperty("13")]
public bool Thirteen { get; set; }
...
}
var result = JsonConvert.DeserializeObject<Episode>(json); // Every property is False
有什么明显的事我不会来这儿吗?我设法反序列化了我必须反序列化的大部分json,但是这个,我似乎无法弄明白。
非常感谢,如果这是一个愚蠢的问题,对不起!
答案 0 :(得分:2)
如果正确定义了类,可以使用Json.Net轻松地反序列化。
像这样定义你的类:
class Wrapper
{
public Dictionary<int, bool> Episodes { get; set; }
}
然后,像这样反序列化(其中json
是你问题中的JSON字符串):
Wrapper wrapper = JsonConvert.DeserializeObject<Wrapper>(json);
然后,您可以访问Episodes
中的Wrapper
字典中的数据:
foreach (KeyValuePair<int, bool> kvp in wrapper.Episodes)
{
Console.WriteLine(kvp.Key + " - " + kvp.Value);
}