比较 JSON 响应



大家早上好。我有一个服务,它向我返回一个 JSON 响应(如下所示):

{
  "sessionid": "AQIC5wM2LY4SfcytTIcteNkTtCVrE8A-AS7VR*",
  "Customers": [
    {
      "id": "4193942846",
      "firstname": "Anto",
      "lastname": "Paul",
      "customertype": "ph",
      "companyCode": "ABCD",
    },
    {
      "id": "4193942236",
      "firstname": "Dimple",
      "lastname": "Paul",
      "customertype": "ph",
      "companyCode": "AB",
    }
  ],
  "Status": "ACTIVE",
  "serviceStatus": "SUCCESS",
  "Addresses": {
    "Address": [
      {
    "type": "M",
        "addr1": "11011, main st",
        "addr2": "Apt. 2",
        "zipcode": "11011"
      }
     ]
    } 
}

上述结构因我传递给服务的输入而异。因此,我无法构建一个类来反序列化响应。我需要将此响应与我已经拥有的响应(在不同的地方)进行比较(属性-属性比较)。

我尝试用 C# 中的动态类来做到这一点,但到目前为止没有运气。有人可以分享更好的工作方法吗?谢谢。

你可以

像这样使用JToken.DeepEquals

var response = JObject.Parse(responseJson);
var goldenStandard = JObject.Parse(goldenStandardJson);
if (JToken.DeepEquals(response, goldenStandard))
{
    // the two JSONs have the same data 
}

尝试 Json.Net。它支持动态结构。这是一个教程:http://www.codeproject.com/Tips/631586/Dynamic-types-with-JSON-NET

使用这个:

https://jsonutil.codeplex.com/

var obj1 = JSONSerializer.Deserialize(jsontext1);
var obj2 = JSONSerializer.Deserialize(jsontext2);
bool Compare(object obj1, object obj2)
{
//if(obj1 is JSONObject && obj2 is JSONObject) 
//   => typecase and use jsonObj1.Members to iterate over members and compare values recursively
//if JSONArray, then iterate over items and compare
//if anything else... i.e. primitive then compare directly
//else return false;
}

如果使用此 JSON 响应一次,则可以使用动态 JSON NET 类型。

但是,如果您有时使用此 JSON 结构响应,则最好对 c# 类(对象)进行此响应,这样您就可以非常轻松地访问它的属性,您只需拥有 c# 对象并且它们具有属性,您可以简单地接近您想要的每个字段(使用 intellisense)。顺便说一下,将 JSON 响应复制到 C# 类(类似于复制粘贴)非常容易。具体操作方法如下:http://blogs.msdn.com/b/webdev/archive/2012/12/18/paste-json-as-classes-in-asp-net-and-web-tools-2012-2-rc.aspx

相关内容

  • 没有找到相关文章

最新更新