2

我有一个具有队列类型属性的类。尝试反序列化 JSON 时,出现以下错误:

JSON 'ConsoleApplication1.Task[], ConsoleApplication1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'中指定的类型与'System.Collections.Generic.Queue`1[[ConsoleApplication1.Task, ConsoleApplication1, Version =1.0.0.0,文化=中性,PublicKeyToken=null]],系统,版本=4.0.0.0,文化=中性,PublicKeyToken=b77a5c561934e089'。路径“Tasks.$type”,第 1 行,位置 140。

我已经包含了下面的示例应用程序,并且我使用的是 Newtonsoft.Json 4.5.10.15407。

我使用队列而不是列表或字典的原因是因为我必须保留插入顺序。我也尝试在文档和其他问题中进行搜索,但还没有真正找到任何具体的东西。任何帮助深表感谢。谢谢你。

namespace ConsoleApplication1
{
    using System;
    using System.Collections.Generic;
    using System.Text;
    using Newtonsoft.Json;

    class Program
    {
        static void Main(string[] args)
        {
            Message message = new Message
                {
                    MessageID = 1,
                    Tasks = new Queue<Task>()
                };
            message.Tasks.Enqueue(new Task{TaskId = 1, Message = "Test1", Parameters = "Param1"});
            message.Tasks.Enqueue(new Task{TaskId = 2, Message = "Test2", Parameters = "Param2"});

            byte[] bSerialized = SerializeJsonWithPrefix(message);
            Message deserializedMessage = DeserializeJson(bSerialized, typeof (Message));
        }

        public static byte[] SerializeJsonWithPrefix(Message item)
        {
            JsonSerializerSettings jss = new JsonSerializerSettings();
            jss.TypeNameHandling = TypeNameHandling.All;
            return Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(item, jss));
        }

        public static Message DeserializeJson(byte[] ueaData, Type concreteType)
        {
            JsonSerializerSettings jss = new JsonSerializerSettings();
            jss.TypeNameHandling = TypeNameHandling.All;

            // --- Error occurs here ---
            var result = JsonConvert.DeserializeObject(Encoding.UTF8.GetString(ueaData), concreteType, jss);
            return (Message)result;
        }
    }

    public class Message
    {
        public int MessageID { get; set; }
        public Queue<Task> Tasks { get; set; } 
    }

    public class Task
    {
        public int TaskId { get; set; }
        public string Message { get; set; }
        public string Parameters { get; set; }
    }
}
4

2 回答 2

2

版本 5 解决了您的问题。

于 2013-05-10T10:14:14.733 回答
-1

我坚持使用 JSON.NET 序列化时,其中 T 是一些 JSON 可序列化类型List<T>Dictionary<string, T>这些很好地对应于 JSON 数组和对象类型(参见json.org)。

如果你序列化 aList<T>然后反序列化它,JSON.NET 当然会保持顺序。我建议只在您Queue<T>和 a之间进行转换以List<T>进行序列化,而不是尝试添加行为以直接序列化Queue<T>.

于 2012-12-16T06:00:30.520 回答