我正在尝试以这种格式反序列化 JSON:
{
"data": [
{
"installed": 1,
"user_likes": 1,
"user_education_history": 1,
"friends_education_history": 1,
"bookmarked": 1
}
]
}
到一个像这样的简单字符串数组:
{
"installed",
"user_likes",
"user_education_history",
"friends_education_history",
"bookmarked"
}
使用JSON.NET 4.0
我已经使用“CustomCreationConverter”让它工作了
public class ListConverter : CustomCreationConverter<List<string>>
{
public override List<string> Create(Type objectType)
{
return new List<string>();
}
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
{
var lst = new List<string>();
//don't care about the inital 'data' element
reader.Read();
while (reader.Read())
{
if (reader.TokenType == JsonToken.PropertyName)
{
lst.Add(reader.Value.ToString());
}
}
return lst;
}
}
但这似乎有点过头了,特别是如果我想为许多不同的 json 响应创建一个。
我试过使用JObject
,但似乎我做得不对:
List<string> lst = new List<string>();
JObject j = JObject.Parse(json_string);
foreach (JProperty p in j.SelectToken("data").Children().Children())
{
lst.Add(p.Name);
}
有一个更好的方法吗?