JsonConvert.DeserializeObject在尝试将byte[]反序列化为IEnumerable<字



下面的代码在反序列化中失败,并出现以下错误。

将值"AQID"转换为类型"System.Collections.Generic.IEnumerable`1[System.Byte]"时出错

public class ByteArrayTest
{
    public string SomeString { get; set; }
    public IEnumerable<byte> ByteArray { get; set; } 
} 
using Newtonsoft.Json;
[TestClass]
public class UnitTest10
{
    [TestMethod]
    public void TestTheByteArraySerialization()
    {
        var test = new ByteArrayTest { ByteArray = new byte[] { 1, 2, 3 }, SomeString = "testing" };
        var serializedData = JsonConvert.SerializeObject(test);
        //This line belows fails with an error of can't convert to IEnumerable<byte>
        var myByeArrayClass = JsonConvert.DeserializeObject<ByteArrayTest>(serializedData);
        Assert.AreEqual(test.ByteArray, myByeArrayClass.ByteArray);
    }
}

在我的特殊情况下,我不拥有ByteArrayTest类,这只是这个问题的一个快速示例。我想要一个不涉及修改ByteArrayTest类的解决方案。理想情况下,我会将一些东西传递到一个DeserializeObject<>重载以使其工作,但我不确定解决此异常的最佳方法

您不能指望JsonConvert神奇地为接口创建实现。

如果您的体系结构允许,您可以使用List<byte>byte[]而不是IEnumerable<byte>,或者您可以添加一个字段来连接Json串行器,并从中隐藏实际的IEnumerable。

private IEnumberable<byte> myBytes = null;
[JsonProperty("BytesArray")]
public string JsonBytes{
get{
  return String.Join("",myBytes.Select(b=>b.ToString("X2"))); // this may need tweaking, null checks etc
}
set{
  byte[] bytes = Convert.FromBase64String(value);
  myBytes = bytes;
} 
[JsonIgnore]
public IEnumerable<byte> BytesArray{
  get{ return myBytes;}
  set{ myBytes = value;}
}

你可能会提供一个转换器来实现同样的事情,但我想说,如果不需要的话,这太麻烦了。

关于StringToByteArray上的几个实现的列表,请参阅本文,我复制了最短的实现。

相关内容

  • 没有找到相关文章

最新更新