我正在尝试创建一个与randomuser.me API交互的应用程序 但是这总是会返回一些错误,这次我使用的是我在stackoverflow中找到的代码来解析json内容。 所以这是我的代码权利:
public string GetJsonPropertyValue(string json, string query)
{
JToken token = JObject.Parse(json);
foreach (string queryComponent in query.Split('.'))
{
token = token[queryComponent];
}
return token.ToString();
}
string getName()
{
string name = "";
try
{
using (WebClient wc = new WebClient())
{
var json = wc.DownloadString("https://randomuser.me/api/");
name = GetJsonPropertyValue(json, "results[0].name.first");
return name;
}
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString());
return name;
}
}
我真的不知道确切的问题是什么,但它正在返回System.NullReferenceException
如果我没有在GetJsonPropretyValue组方法的第二个参数中插入索引,并以这种方式插入results.name.first
它返回了这样一个错误:
System.ArgumentException:使用无效键值访问JArray值:>“name”。预期数组位置索引。
at Newtonsoft.Json.Linq.JArray.get_Item(Object key)
答案 0 :(得分:0)
当你在路径中有一个数组索引时,尝试在你正在做的点上拆分JSON路径是行不通的。幸运的是,您不必滚动自己的查询方法;内置的SelectToken()
方法完全符合您的要求:
using (WebClient wc = new WebClient())
{
var json = wc.DownloadString("https://randomuser.me/api/");
JToken token = JToken.Parse(json);
string firstName = (string)token.SelectToken("results[0].name.first");
string lastName = (string)token.SelectToken("results[0].name.last");
string city = (string)token.SelectToken("results[0].location.city");
string username = (string)token.SelectToken("results[0].login.username");
...
}