2

在我的 c# 项目中,我想访问复杂且嵌套的JSON中的特定信息(POI名称距离) 。

此 JSON 是 Azure Maps API 调用的结果。

我试图将它反序列化为一个对象。但是这个 JSON 太复杂了,我做不到。

提取我需要的信息的最佳方法是什么?

{
  "summary": {
    "query": "university",
    "queryType": "NON_NEAR",
    "queryTime": 103,
    "numResults": 1,
    "offset": 0,
    "totalResults": 216684,
    "fuzzyLevel": 1,
    "geoBias": {
      "lat": 48.008446,
      "lon": 7.821583
    }
  },
  "results": [
    {
      "type": "POI",
      "id": "DE/POI/p0/1505647",
      "score": 2.574,
      "dist": 774.6544330765787,
      "info": "search:ta:276009006412786-DE",
      "poi": {
        "name": "Universität Freiburg Medizinische Fakultät",
        "phone": "+(49)-(761)-27072350",
        "url": "www.med.uni-freiburg.de",
        "categories": [
          "college/university"
        ],
        "classifications": [
          {
            "code": "COLLEGE_UNIVERSITY",
            "names": [
              {
                "nameLocale": "en-US",
                "name": "college/university"
              }
            ]
          }
        ]
      },
      "address": {
        "streetName": "Elsässer Straße",
        "municipalitySubdivision": "Mooswald",
        "municipality": "Freiburg im Breisgau",
        "countrySecondarySubdivision": "Freiburg im Breisgau",
        "countrySubdivision": "Baden-Württemberg",
        "postalCode": "79110",
        "countryCode": "DE",
        "country": "Germany",
        "countryCodeISO3": "DEU",
        "freeformAddress": "Elsässer Straße, 79110 Freiburg Im Breisgau"
      },
      "position": {
        "lat": 48.00894,
        "lon": 7.83197
      },
      "viewport": {
        "topLeftPoint": {
          "lat": 48.00984,
          "lon": 7.83063
        },
        "btmRightPoint": {
          "lat": 48.00804,
          "lon": 7.83331
        }
      },
      "entryPoints": [
        {
          "type": "main",
          "position": {
            "lat": 48.00931,
            "lon": 7.83259
          }
        }
      ]
    }
  ]
}
4

3 回答 3

1

第 1 步: 在 JSON 解析器网站(例如https://jsonparser.org )中解析您的 JSON 这将帮助您了解内容以及如何将其翻译为对象。例如,您的 JSON 字符串给出了以下结果:

在此处输入图像描述

Step2: 打开本网站的查询工具,这将帮助您找到您需要的信息的对象路径。例如,对于您的 JSON 字符串,要访问 POI 名称:

在此处输入图像描述

第 3 步: 在您的 Visual Studio 项目中,在您的共享库中安装 NuGet 包:Newtonsoft.Json 和 Microsoft.CSharp。如果您在单独的库中处理 JSON,请同时在主项目中安装 Newtonsoft.Json NuGet 包。

第 4 步: 如果JSONstring是您的 JSON 字符串:

using Newtonsoft.Json;

dynamic NewObject = JsonConvert.DeserializeObject<dynamic>(JSONstring);


string Name = NewObject.results[0].poi.name;

string Distance = NewObject.results[0].dist;
于 2019-03-27T18:13:47.353 回答
1

您至少有 2 个可能的解决方案:

您可以创建反映您期望的 json 内容的类

public class MyJSON
{
  public Summary summary { get; set; }

  public List<Result> results { get; set; }
  ...
}

public class Summary
{
   public string query { get; set; }
   ...
}

然后你可以使用 Newtonsoft.Json 反序列化

JsonConvert.DeserializeObject<MyJSON>(jsonstring);

或者您可以直接反序列化为动态对象并直接按名称访问属性。

  dynamic data = JsonConvert.DeserializeObject<dynamic>(jsonstring);      
  string query = data[0].summary.query;

解决方案 1 要求您首先创建类,但访问起来更快、更安全(不太容易出现错误命名或数据结构更改)

解决方案 2 更加不稳定和灵活,您只需访问您需要的内容。但是,如果您尝试访问 json 对象中不存在的属性,您可能会遇到异常。

于 2019-03-27T18:16:52.333 回答
1

我通过json2csharp转换了你的 json 然后你可以使用 Newtonsoft 来反序列化它们

RootObject 根= JsonConvert.DeserializeObject(JSONstring)

   public class GeoBias
    {
        public double lat { get; set; }
        public double lon { get; set; }
    }

    public class Summary
    {
        public string query { get; set; }
        public string queryType { get; set; }
        public int queryTime { get; set; }
        public int numResults { get; set; }
        public int offset { get; set; }
        public int totalResults { get; set; }
        public int fuzzyLevel { get; set; }
        public GeoBias geoBias { get; set; }
    }

    public class Name
    {
        public string nameLocale { get; set; }
        public string name { get; set; }
    }

    public class Classification
    {
        public string code { get; set; }
        public List<Name> names { get; set; }
    }

    public class Poi
    {
        public string name { get; set; }
        public string phone { get; set; }
        public string url { get; set; }
        public List<string> categories { get; set; }
        public List<Classification> classifications { get; set; }
    }

    public class Address
    {
        public string streetName { get; set; }
        public string municipalitySubdivision { get; set; }
        public string municipality { get; set; }
        public string countrySecondarySubdivision { get; set; }
        public string countrySubdivision { get; set; }
        public string postalCode { get; set; }
        public string countryCode { get; set; }
        public string country { get; set; }
        public string countryCodeISO3 { get; set; }
        public string freeformAddress { get; set; }
    }

    public class Position
    {
        public double lat { get; set; }
        public double lon { get; set; }
    }

    public class TopLeftPoint
    {
        public double lat { get; set; }
        public double lon { get; set; }
    }

    public class BtmRightPoint
    {
        public double lat { get; set; }
        public double lon { get; set; }
    }

    public class Viewport
    {
        public TopLeftPoint topLeftPoint { get; set; }
        public BtmRightPoint btmRightPoint { get; set; }
    }

    public class Position2
    {
        public double lat { get; set; }
        public double lon { get; set; }
    }

    public class EntryPoint
    {
        public string type { get; set; }
        public Position2 position { get; set; }
    }

    public class Result
    {
        public string type { get; set; }
        public string id { get; set; }
        public double score { get; set; }
        public double dist { get; set; }
        public string info { get; set; }
        public Poi poi { get; set; }
        public Address address { get; set; }
        public Position position { get; set; }
        public Viewport viewport { get; set; }
        public List<EntryPoint> entryPoints { get; set; }
    }

    public class RootObject
    {
        public Summary summary { get; set; }
        public List<Result> results { get; set; }
    }
于 2019-03-27T18:29:11.840 回答