我有一些JSON:
{
"AI": "1",
"AJ": "0",
"AM": "0",
"AN": "0",
"BK": "5",
"BL": "8",
"BM": "0",
"BN": "0",
"BO": "4",
"CJ": "0",
"CK": "2"
}
我想按数字从高到低对其进行排序,并通过编写 JSON 的第一个索引来获取具有最高数字的属性。 你可以帮我吗?
这是我到目前为止所拥有的:
string voteJson = File.ReadAllText("vote.json");
Object voteObj = JObject.Parse(voteJson);
//How to sort the object here?
//Saving it
string output = Newtonsoft.Json.JsonConvert.SerializeObject(voteObj,
Newtonsoft.Json.Formatting.Indented);
File.WriteAllText("vote-sorted.json", output);
尽管 JSON
规范将 JSON 对象定义为一组无序属性,但 Json.Net 的 JObject
类似乎确实保持了其中属性的顺序。 您可以按值对属性进行排序,如下所示:
JObject voteObj = JObject.Parse(voteJson);
var sortedObj = new JObject(
voteObj.Properties().OrderByDescending(p => (int)p.Value)
);
string output = sortedObj.ToString();
然后,您可以获取具有最高值的属性,如下所示:
JProperty firstProp = sortedObj.Properties().First();
Console.WriteLine("Winner: " + firstProp.Name + " (" + firstProp.Value + " votes)");
工作演示:https://dotnetfiddle.net/dptrZQ