我正在尝试将http://gothere.sg/a/search?q=688609+to+changi+airport&ll=1.362083%2C103.819836上的 JSON 解析为 Windows Phone 8 应用程序。
目前,我正在使用 Newtonsoft.Json 框架,但并不真正知道如何使用它来解析数据。我还使用 json2csharp.com 轻松查看数据。
如果我没记错的话,我需要的数据是List<string> email
和string route_html
下。Route
我将如何使用 Json.NET 或任何其他方法将上述两个解析到我的应用程序中?
编辑:我当前的非工作代码:
private async void testCode()
{
var uri = new Uri("http://gothere.sg/a/search?q=688609+to+changi+airport&ll=1.362083%2C103.819836");
var client = new HttpClient();
try
{
var response = await client.GetStringAsync(uri);
JToken token = JObject.Parse(response);
var token1 = token.SelectToken("route_html").ToString();
var token2 = token.SelectToken("email").ToString();
}
catch (Exception)
{
}
}