我在将JSON对象反序列化为类(使用JSON.NET)时遇到了一些麻烦,希望有人可以指出我正确的方向。以下是我正在尝试的代码片段,并在dotnetfiddle
进行测试以下是JSON的示例:
{
"`LCA0001": {
"23225007190002": "1",
"23249206670003": "1",
"01365100070018": "5"
},
"`LCA0003": {
"23331406670018": "1",
"24942506670004": "1"
},
"`LCA0005": {
"01365100070018": "19"
}
}
我正在尝试使用此代码:
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
public class Program
{
public static void Main()
{
string json = "{\"`LCA0001\": {\"23225007190002\": \"1\",\"23249206670003\": \"1\",\"01365100070018\": \"5\"},\"`LCA0003\": {\"23331406670018\": \"1\",\"24942506670004\": \"1\"},\"`LCA0005\": {\"01365100070018\": \"19\"}}";
Console.WriteLine(json);
Console.WriteLine();
//This works
Console.Write("Deserialize without class");
var root = JsonConvert.DeserializeObject<Dictionary<string, Dictionary<string, int>>>(json);
foreach (var locationKvp in root)
{
foreach (var skuKvp in locationKvp.Value)
{
Console.WriteLine("location: " + locationKvp.Key + ", sku: " + skuKvp.Key + ", qty: " + skuKvp.Value);
}
}
//Why doesn't this work?
Console.Write("\nDeserialize with class");
var root2 = JsonConvert.DeserializeObject<InventoryLocations>(json);
foreach (var locationKvp in root2.InventoryLocation)
{
foreach (var skuKvp in locationKvp.Value)
{
Console.WriteLine("location: " + locationKvp.Key + ", sku: " + skuKvp.Key + ", qty: " + skuKvp.Value);
}
}
}
}
class InventoryLocations
{
public Dictionary<Location, Dictionary<Sku, Qty>> InventoryLocation { get; set; }
}
public class Location
{
public string location { get; set; }
}
public class Sku
{
public string sku { get; set; }
}
public class Qty
{
public int qty { get; set; }
}
为什么反序列化为类不起作用?我只是错误地定义了这些类吗?
答案 0 :(得分:3)
我在这里看到两个问题:一个是使用类作为字典键 - JSON在那里有简单的字符串(并且真的没有其他东西),所以这不起作用。
第二个问题是JSON对类的反序列化通过将键匹配到属性来实现 - 因此它会转换类似
的内容{
"prop1": "value1",
"prop2": "value2"
}
到一个实例:
public class MyClass {
public string prop1 { get; set; }
public string prop2 { get; set; }
}
在您的情况下,这不起作用,因为在您的JSON中,所有键都不是有效的属性名称。你必须坚持反序列化到字典
答案 1 :(得分:1)
从JSON生成类的一种方法是使用Visual Studio。
导航至Edit -> Paste Special -> Paste JSON As Classes
。对于发布的JSON,将生成以下类。
public class Rootobject
{
public LCA0001 LCA0001 { get; set; }
public LCA0003 LCA0003 { get; set; }
public LCA0005 LCA0005 { get; set; }
}
public class LCA0001
{
public string _23225007190002 { get; set; }
public string _23249206670003 { get; set; }
public string _01365100070018 { get; set; }
}
public class LCA0003
{
public string _23331406670018 { get; set; }
public string _24942506670004 { get; set; }
}
public class LCA0005
{
public string _01365100070018 { get; set; }
}
答案 2 :(得分:0)
除了MiMo的回答,您还可以使用ContractResolver序列化/反序列化类中的词典。
Here's a working example of your code in dotnetfiddle.
请注意,带有合约解析程序的序列化Json与原始json不同。必须使用此合约解析程序对其进行序列化,以便使用它进行反序列化。
如果您需要进一步澄清,我会从this StackOverflow question撤回合同解析程序。