这是一个非常简单的问题,但似乎找不到直接的答案。我读了一个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然后获取对游戏世界的引用。这必须是如此的。
谢谢,
johnh
答案 0 :(得分:4)
使用JArray
和JObject
对象,如下所示:
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);
}
}
答案 1 :(得分:2)
给出JToken token
:
if (token.Type == JTokenType.Object)
{
foreach (var pair in token as JObject)
{
string name = pair.Key;
JToken child = pair.Value;
//do something with the JSON properties
}
}
else if (token.Type == JTokenType.Array)
{
foreach (var child in token.Children())
{
//do something with the JSON array items
}
}
else
{
//do something with a JSON value
}
答案 2 :(得分:0)
在阅读字符串时,请查看阅读器的属性。特别是在TokenType和Value属性中。如果你真的需要按顺序阅读它,那就是要走的路。 TokenType将按顺序依次为StartObject,PropertyName,String等,具体取决于正在读取的节点。基本上每次看到PropertyName时,下一个将是属性值。
请注意,使用其他技术可能会更好,但这一切都取决于。
答案 3 :(得分:0)
我看到此线程有点旧...但是,@ Karl Anderson,您的回答很有帮助。我刚刚添加了一点点,这比我进行的3或4个嵌套的foreach循环要好得多。请参见下面的代码。谢谢您的帮助!
JArray jsonResponse = JArray.Parse(content);
Debug.WriteLine("\n\njsonResponse: \n" + jsonResponse);
foreach (JObject root in jsonResponse)
{
foreach (KeyValuePair<String, JToken> tag in root)
{
var tagName = tag.Key;
var variable = tag.Value;
Debug.WriteLine("Key: " + tagName + " Value: " + variable);
}
}