在使用C#的Windows Phone应用程序中,我尝试使用以下结构反序列化某些JSON:
[ { "kite" : { "supplier" : "ABC",
"currency" : "GBP",
"cost" : "7.98"
} },
{ "puzzle" : { "supplier" : "DEF",
"currency" : "USD",
"cost" : "7.98"
} },
{ "ball" : { "supplier" : "DEF",
"currency" : "USD",
"cost" : "5.49"
} }
]
这是一个玩具清单,其中的玩具(风筝,拼图,球)的名称不是事先知道的。我无法控制JSON的格式。
使用json2csharp.com我得到以下类:
public class Kite
{
public string supplier { get; set; }
public string currency { get; set; }
public string cost { get; set; }
}
public class Puzzle
...
public class Ball
...
public class RootObject
{
public Kite kite { get; set; }
public Puzzle puzzle { get; set; }
public Ball ball { get; set; }
}
这对我来说就像一堆“玩具”对象,但我不知道在反序列化时采取什么方法。
我工作的唯一代码是基本代码:
var root = JsonConvert.DeserializeObject(rawJSON);
我认为以下内容可能会有效,但如果有效,我会失去玩具的名称(但事实并非如此):
public class Toy
{
public string supplier { get; set; }
public string currency { get; set; }
public string cost { get; set; }
}
List<Toy> toyList = (List<Toy>) JsonConvert.DeserializeObject(rawJSON, typeof(List<Toy>));
有什么建议吗?
答案 0 :(得分:1)
你很亲密。如果您在问题中定义了Toy
课程,则可以将其反序列化为List<Dictionary<string, Toy>>
。因此,每个玩具实际上由Dictionary
表示,其中包含一个条目。 Key
是玩具的名称,Value
是Toy
信息
这是一个演示:
string json = @"
[ { ""kite"" : { ""supplier"" : ""ABC"",
""currency"" : ""GBP"",
""cost"" : ""7.98""
} },
{ ""puzzle"" : { ""supplier"" : ""DEF"",
""currency"" : ""USD"",
""cost"" : ""7.98""
} },
{ ""ball"" : { ""supplier"" : ""DEF"",
""currency"" : ""USD"",
""cost"" : ""5.49""
} }
]";
List<Dictionary<string, Toy>> list =
JsonConvert.DeserializeObject<List<Dictionary<string, Toy>>>(json);
foreach (Dictionary<string, Toy> dict in list)
{
KeyValuePair<string, Toy> kvp = dict.First();
Console.WriteLine("toy: " + kvp.Key);
Console.WriteLine("supplier: " + kvp.Value.Supplier);
Console.WriteLine("cost: " + kvp.Value.Cost + " (" + kvp.Value.Currency + ")");
Console.WriteLine();
}
这输出以下内容:
toy: kite
supplier: ABC
cost: 7.98 (GBP)
toy: puzzle
supplier: DEF
cost: 7.98 (USD)
toy: ball
supplier: DEF
cost: 5.49 (USD)
不可否认,这种解决方案有点“笨拙”,因为最好将玩具的名称包含在Toy
类中,而不是介入Dictionary
绊倒。有两种方法可以解决这个问题。一种方法是在Name
类上添加Toy
属性,反序列化为如上所示的相同结构,然后进行一些后处理以从每个Dictionary
移动名称进入相应的Toy
,在此过程中构建新的List<Toy>
。第二种方法是创建自定义JsonConverter
以在反序列化期间处理此转换。如果您愿意,我很乐意展示这些替代方法中的任何一种。请告诉我。如果你只需要快速和肮脏,那么上面的方法就应该这样做。
使用自定义JsonConverter的替代方法
这种方法有点“干净”,因为我们可以将所有Toy
信息保存在一个强类型对象上,并保持所有反序列化逻辑分离,这样就不会使主代码混乱。
首先,我们需要更改您的Toy
类,以便为其提供Name
属性。
class Toy
{
public string Name { get; set; }
public string Supplier { get; set; }
public string Currency { get; set; }
public decimal Cost { get; set; }
}
接下来,我们创建一个继承自JsonConverter
。
class ToyConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{
// This lets JSON.Net know that this converter can handle Toy objects
return (objectType == typeof(Toy));
}
public override object ReadJson(JsonReader reader,
Type objectType, object existingValue, JsonSerializer serializer)
{
// load the toy JSON object into a JObject
JObject jo = JObject.Load(reader);
// get the first (and only) property of the object
JProperty prop = jo.Properties().First();
// deserialize the value of that property (which is another
// object containing supplier and cost info) into a Toy instance
Toy toy = prop.Value.ToObject<Toy>();
// get the name of the property and add it to the newly minted toy
toy.Name = prop.Name;
return toy;
}
public override void WriteJson(JsonWriter writer,
object value, JsonSerializer serializer)
{
// If you need to serialize Toys back into JSON, then you'll need
// to implement this method. We can skip it for now.
throw new NotImplementedException();
}
}
要使用转换器,我们只需创建一个实例并在调用DeserializeObject<T>()
时传递它。现在我们有了这个转换器,我们可以直接反序列化为List<Toy>
,这更加自然。
List<Toy> toys = JsonConvert.DeserializeObject<List<Toy>>(json, new ToyConverter());
从那里访问玩具数据非常简单。
foreach (Toy toy in toys)
{
Console.WriteLine("toy: " + toy.Name);
Console.WriteLine("supplier: " + toy.Supplier);
Console.WriteLine("cost: " + toy.Cost + " (" + toy.Currency + ")");
Console.WriteLine();
}
您会注意到这与前一个示例的输出完全相同,但代码更清晰。