Newtonsoft 填充对象 - 值不能为空异常



我正在尝试填充包含包含enum属性的对象的自定义枚举的现有实例。 当我这样做时,我收到来自JsonConvert.PopulateObject()的错误System.ArgumentNullException: Value cannot be null. 这是什么原因造成的? 这是我的示例:

https://dotnetfiddle.net/CLYN3L

我正在尝试查看以下任何原因:

  1. 在我的课堂上有枚举。

  2. 我的类继承了IEnumeratorIEnumerable

我有以下无法控制的类和枚举。我无法更改它们:

public enum ErrorDisplayType : int 
{
    PopUp = 0,
    ErrorPane = 1,
    Statusbar = 2
}
[Serializable()]
public class ErrorObj 
{
   private string errorCode;
   private ErrorDisplayType errorDispType;
   public string ErrorCode 
   {
     get { return this.errorCode; }
     set {
        this.errorCode = value;
        if (errorCode != null)
        {
           this.setFields(errorCode);
        }
     }
   }
   public ErrorDisplayType ErrorDispType 
   {
      get { return this.errorDispType; }
      set { this.errorDispType = value; }
   }
    private void setFields(string errorCode) 
    {
       this.errorDispType = (ErrorDisplayType)int.Parse(errorCode);
    }   
}
[Serializable]
public class ErrorDTO : IEnumerator, IEnumerable 
{
   private int indx = -1;
   private List<ErrorObj> errorList;
   public List<ErrorObj> ErrorList 
   {
     get { return this.errorList; }
     set { this.errorList = value; }
   }
   public ErrorDTO()
   {
        this.errorList = new List<ErrorObj>();
   }
   public int Add(ErrorObj error)
   {
    this.errorList.Add(error);
    return 0;  
   }
   public bool MoveNext()
   {
      if (indx < errorList.Count - 1)      
      {                                    
         ++indx;                          
         return true;                     
      }                                    
      else                                 
      {                                    
         indx = -1;                       
         return false;                    
      }                                    
    }
    public void Reset()
    {
      this.indx = -1;
    }
    public object Current                                                            
    {                                                                               
       get                                                                          
       {                                                                            
         if (errorList.Count == 0 || indx < 0 || indx > errorList.Count - 1)
         { 
            return null;                                                         
         }
         return this.errorList[indx];                                             
       }                                                                            
    } 
    public IEnumerator GetEnumerator()  
    {
      return (IEnumerator)this;
    }
}

有方法(我无法更改),它给了我如下所示的 JSON 字符串

[{
    "ErrorCode": "ABCD125",
    "ErrorDispType": 1
}]

我生成如下:

// below is already existing code
private static ErrorObj CreateErrorObj(string errorCode)
{
   ErrorObj error = new ErrorObj();
   error.ErrorCode = "ABCD125";
   error.ErrorDispType = (ErrorDisplayType)int.Parse(errorCode);
   return error;    
}
public string GetErrorJSON()
{
  ErrorDTO errDTO = new ErrorDTO();
  ErrorObj errObj = CreateErrorObj("1");
  errDTO.Add(errObj);
  string returnValue = Newtonsoft.Json.JsonConvert.SerializeObject(errDTO);
  return returnValue;
 }

下面是我的代码,我正在尝试反序列化

ErrorDTO errorDTO = new ErrorDTO();
string jsonString = GetErrorJSON();

下面一行给我抛出错误。System.ArgumentNullException:值不能为空。

Newtonsoft.Json.JsonConvert.PopulateObject(jsonString, errorDTO);

请让我知道问题出在哪里。如果您需要更多信息,请告诉我。

你的基本问题是你已经将ErrorDTO声明为 IEnumerator, IEnumerable ,也就是说,一个无类型的、非泛型的可枚举。 Json.NET 将此类对象解释为只读非类型化集合,因此当您尝试填充它时,会出现异常:

System.ArgumentNullException: Value cannot be null.
   at System.RuntimeType.MakeGenericType(Type[] instantiation)
   at Newtonsoft.Json.Serialization.JsonArrayContract.CreateWrapper(Object list)
   at Newtonsoft.Json.Serialization.JsonSerializerInternalReader.Populate(JsonReader reader, Object target)
   at Newtonsoft.Json.JsonSerializer.PopulateInternal(JsonReader reader, Object target)
   at Newtonsoft.Json.JsonConvert.PopulateObject(String value, Object target, JsonSerializerSettings settings)
   at Newtonsoft.Json.JsonConvert.PopulateObject(String value, Object target)

异常消息是无用且具有误导性的,但真正的原因是 Json.NET 无法知道要反序列化的集合项的目标类型,也无法知道反序列化后添加它们的方法,对于任何非类型化的只读集合。

解决此类问题的正常方法是将ErrorDTO声明为ICollection<ErrorObj>并实现必要的泛型方法,从而通知 Json.NET 项目类型和Add()方法,但不幸的是,您声明

我无法更改它们[类]。

因此,最简单的解决方法是填充基础列表:

Newtonsoft.Json.JsonConvert.PopulateObject(json, resultDTO.ErrorList);

演示小提琴在这里。

相关内容

  • 没有找到相关文章

最新更新