gpt4 book ai didi

c# - 使用 C# 解析并遍历 json 对象来处理每个字段

转载 作者:行者123 更新时间:2023-11-30 14:32:32 24 4
gpt4 key购买 nike

这是一个非常简单的问题,但似乎找不到直接的答案。我读入了一个 JSON 对象。然后我想解析它并能够直接寻址一个标记或一个值,然后将其格式化以写入文件输出,我将在另一个应用程序中使用它。我正在使用 C# 和 Newtonsoft 库。

我的代码:

JsonTextReader reader = new JsonTextReader(re);
while (reader.Read())
{
if (reader.Value != null)
Console.WriteLine("Value: {0}", "This is the value <Tags>: " + reader.Value);
}

如何处理每一行?例如,desc 然后获取对游戏世界的引用。这一定很普通。

谢谢,

约翰

最佳答案

改为使用 JArrayJObject 对象,如下所示:

var json = System.IO.File.ReadAllText("YourJSONFilePath");
var objects = JArray.Parse(json);

foreach(JObject root in objects)
{
foreach(KeyValuePair<String, JToken> tag in root)
{
var tagName = tag.Key;
Console.WriteLine("Value: {0}", "This is the value <Tags>: " + tagName);
}
}

关于c# - 使用 C# 解析并遍历 json 对象来处理每个字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18318461/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com