在升级代码库以使用Json.NET 8.0.1之后,一些反序列化出现了问题。使用Json.NET 7.0.1,一切都很正常。显然是byte[]
类型的属性的反序列化导致了这个问题。如果我删除byte[]
属性,它可以正常工作。我可以使用这个简单的控制台应用程序重现行为:
internal class Program
{
private static void Main(string[] args)
{
Dictionary<string, Account> accounts;
var jsonSerializerSettings = new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple
};
using (var streamReader = new StreamReader("accounts.json"))
{
var json = streamReader.ReadToEnd();
accounts = JsonConvert.DeserializeObject<Dictionary<string, Account>>(json, jsonSerializerSettings);
}
foreach (var account in accounts)
{
Debug.WriteLine(account.Value.Name);
}
}
}
internal class Account
{
public string Id { get; set; }
public string Name { get; set; }
public byte[] EncryptedPassword { get; set; }
}
accounts.json
文件如下所示:
{
"$type": "System.Collections.Generic.Dictionary`2[[System.String, mscorlib],[ConsoleApplication1.Account, ConsoleApplication1]], mscorlib",
"lars.michael": {
"$type": "ConsoleApplication1.Account, ConsoleApplication1",
"EncryptedPassword": {
"$type": "System.Byte[], mscorlib",
"$value": "cGFzc3dvcmQ="
},
"Name": "Lars Michael",
"Id": "lars.michael"
},
"john.doe": {
"$type": "ConsoleApplication1.Account, ConsoleApplication1",
"EncryptedPassword": {
"$type": "System.Byte[], mscorlib",
"$value": "cGFzc3dvcmQ="
},
"Name": "John Doe",
"Id": "john.doe"
}
}
这可能是Json.NET 8.0.1中的一个错误吗?或者我可以通过调整JsonSerializerSettings
来解决这个问题吗?
如果有人试图复制此文件,请确保将accounts.json
文件中的程序集名称与控制台应用程序的程序集名(在本例中为ConsoleApplication1
)同步。
更新
已在更改集70120ce中修复,该更改集将包含在Json.NET 8.0.2中。
原始答案
已确认-这似乎是一种回归。考虑以下简单的测试类:
internal class HasByteArray
{
public byte[] EncryptedPassword { get; set; }
}
现在,如果我尝试使用TypeNameHandling.Objects
:往返于该类
private static void TestSimple()
{
var test = new HasByteArray { EncryptedPassword = Convert.FromBase64String("cGFzc3dvcmQ=") };
try
{
TestRoundTrip(test);
}
catch (Exception ex)
{
Debug.WriteLine(ex);
}
}
private static void TestRoundTrip<T>(T item)
{
var jsonSerializerSettings = new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple
};
TestRoundTrip<T>(item, jsonSerializerSettings);
}
private static void TestRoundTrip<T>(T item, JsonSerializerSettings jsonSerializerSettings)
{
var json = JsonConvert.SerializeObject(item, Formatting.Indented, jsonSerializerSettings);
Debug.WriteLine(json);
var item2 = JsonConvert.DeserializeObject<T>(json, jsonSerializerSettings);
var json2 = JsonConvert.SerializeObject(item2, Formatting.Indented, jsonSerializerSettings);
Debug.WriteLine(json2);
if (!JToken.DeepEquals(JToken.Parse(json), JToken.Parse(json2)))
throw new InvalidOperationException("Round Trip Failed");
}
我得到以下异常:
Newtonsoft.Json.JsonSerializationException: Additional text found in JSON string after finishing deserializing object.
at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Deserialize(JsonReader reader, Type objectType, Boolean checkAdditionalContent) in C:DevelopmentReleasesJsonWorkingNewtonsoft.JsonWorking-SignedSrcNewtonsoft.JsonSerializationJsonSerializerInternalReader.cs:line 196
at Newtonsoft.Json.JsonSerializer.DeserializeInternal(JsonReader reader, Type objectType) in C:DevelopmentReleasesJsonWorkingNewtonsoft.JsonWorking-SignedSrcNewtonsoft.JsonJsonSerializer.cs:line 823
at Newtonsoft.Json.JsonSerializer.Deserialize(JsonReader reader, Type objectType) in C:DevelopmentReleasesJsonWorkingNewtonsoft.JsonWorking-SignedSrcNewtonsoft.JsonJsonSerializer.cs:line 802
at Newtonsoft.Json.JsonConvert.DeserializeObject(String value, Type type, JsonSerializerSettings settings) in C:DevelopmentReleasesJsonWorkingNewtonsoft.JsonWorking-SignedSrcNewtonsoft.JsonJsonConvert.cs:line 863
at Newtonsoft.Json.JsonConvert.DeserializeObject[T](String value, JsonSerializerSettings settings) in C:DevelopmentReleasesJsonWorkingNewtonsoft.JsonWorking-SignedSrcNewtonsoft.JsonJsonConvert.cs:line 820
at Question34654184.TestClass.TestRoundTrip[T](T item, JsonSerializerSettings jsonSerializerSettings)
at Question34654184.TestClass.TestRoundTrip[T](T item)
at Question34654184.TestClass.TestSimple()
Json 7.0中没有出现异常。你应该报告一个问题。
同时,您可以使用以下转换器来解决此问题:
public class ByteArrayConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{
return objectType == typeof(byte[]);
}
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
{
if (reader.TokenType == JsonToken.Null)
return null;
var token = JToken.Load(reader);
if (token == null)
return null;
switch (token.Type)
{
case JTokenType.Null:
return null;
case JTokenType.String:
return Convert.FromBase64String((string)token);
case JTokenType.Object:
{
var value = (string)token["$value"];
return value == null ? null : Convert.FromBase64String(value);
}
default:
throw new JsonSerializationException("Unknown byte array format");
}
}
public override bool CanWrite { get { return false; } } // Use the default implementation for serialization, which is not broken.
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
throw new NotImplementedException();
}
}
带设置
var jsonSerializerSettings = new JsonSerializerSettings
{
TypeNameHandling = TypeNameHandling.Objects,
TypeNameAssemblyFormat = FormatterAssemblyStyle.Simple,
Converters = new [] { new ByteArrayConverter() },
};