gpt4 book ai didi

c# - 使用 newtonsoft 解析 JSON

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:24 24 4
gpt4 key购买 nike

我正在从这个 google api 服务获取 json 响应,以从纬度和经度获取反向地理位置。

http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=true

在响应 JSON 中有很多同名的 rack[]。我如何使用 newtonsoft 解析此 JSON 以获取国家/地区名称。

最佳答案

WebClient wc = new WebClient();
var json = (JObject)JsonConvert.DeserializeObject(wc.DownloadString(url));

var country = json["results"]
.SelectMany(x => x["address_components"])
.FirstOrDefault(t => t["types"].First().ToString() == "country");

var name = country!=null ? country["long_name"].ToString() : "";

关于c# - 使用 newtonsoft 解析 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11257212/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com