使用newtonsoft解析JSON

时间:2012-06-29 06:43:22

标签: c# json windows-phone-7 json.net

我从这个google api服务获得json响应,以便从lat和long获得反向地理位置。

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

在响应JSON中有很多相同名称的rack []。我如何用newtonsoft解析这个JSON来获取国家名称。

1 个答案:

答案 0 :(得分:15)

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() : "";