繁体   English   中英

序列化和反序列化类型T,派生自Dictionary <string, T> ,使用Json.NET

[英]Serializing and deserializing of type T, derived from Dictionary<string, T>, using Json.NET

我创建了一个示例项目。 我正在序列化以下类型:

[JsonObject(IsReference = true, ItemReferenceLoopHandling = ReferenceLoopHandling.Serialize)]
public class SampleTree : Dictionary<string, SampleTree>
{
    [JsonProperty(ReferenceLoopHandling = ReferenceLoopHandling.Serialize)]
    public SampleClass Value { get; set; }

    [JsonProperty(IsReference = true, ReferenceLoopHandling = ReferenceLoopHandling.Serialize)]
    public SampleTree Parent { get; set; }
}

[JsonObject(IsReference = true)]
public class SampleClass
{
    public string A { get; set; }

    public int B { get; set; }

    public bool C { get; set; }
}

程序代码(简化控制台应用程序):

static void Main(string[] args)
{
    var tree = new SampleTree
    {
        Value = new SampleClass
        {
            A = "abc",
            B = 1,
            C = true
        },
        Parent = null
    };

    var treeChild = new SampleTree
    {
        Value = new SampleClass
        {
            A = "def",
            B = 2,
            C = false
        },
        Parent = tree
    };

    tree.Add("firstChild", treeChild);

    var serializerSettings = new JsonSerializerSettings
    {
        PreserveReferencesHandling = PreserveReferencesHandling.All,
        ReferenceLoopHandling = ReferenceLoopHandling.Serialize,
        Formatting = Formatting.Indented
    };

    var serialized = JsonConvert.SerializeObject(tree, serializerSettings);

    var deserialized = JsonConvert.DeserializeObject<SampleTree>(serialized, serializerSettings);

    var d = deserialized;
}

序列化的结果非常完美:结果字符串包含我之前提交给树的所有数据。 但是,使用相同的序列化程序设置对该字符串进行反序列化是不正确的:结果对象根本没有子项。 也许主要问题是属性......这样的行为是什么原因?

我不确定这是你所要求的。

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {

        static void Main(string[] args)
        {
            Dictionary<string, SampleTree> tree = new Dictionary<string, SampleTree>();
            var a = new SampleTree
            {
                Value = new SampleClass
                {
                    A = "abc",
                    B = 1,
                    C = true
                },
                Parent = null
            };

            var treeChild = new SampleTree
            {
                Value = new SampleClass
                {
                    A = "def",
                    B = 2,
                    C = false
                },
                Parent = a
            };

            tree.Add("parent", a);
            tree.Add("child", treeChild);

            var serializerSettings = new JsonSerializerSettings
            {
                PreserveReferencesHandling = PreserveReferencesHandling.All,
                ReferenceLoopHandling = ReferenceLoopHandling.Serialize,
                Formatting = Formatting.Indented
            };

            var serialized = JsonConvert.SerializeObject(tree, serializerSettings);

            var deserialized = JsonConvert.DeserializeObject<Dictionary<string, SampleTree>>(serialized, serializerSettings);

            var d = deserialized;
        }
    }

    [JsonObject(IsReference = true, ItemReferenceLoopHandling = ReferenceLoopHandling.Serialize)]
    public class SampleTree
    {
        [JsonProperty(ReferenceLoopHandling = ReferenceLoopHandling.Serialize)]
        public SampleClass Value { get; set; }

        [JsonProperty(IsReference = true, ReferenceLoopHandling = ReferenceLoopHandling.Serialize)]
        public SampleTree Parent { get; set; }
    }

    [JsonObject(IsReference = true)]
    public class SampleClass
    {
        public string A { get; set; }

        public int B { get; set; }

        public bool C { get; set; }
    }

}

这对我来说完美无缺。 如果这是您想要的,请告诉我。

我没有在Main函数中声明Dictionary,而是向SampleTree本身添加了一个名为Children类型的属性(并删除了继承的ofc)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM