2012-06-21 23 views
27

私はJSON.NETをC#で使用してKlout APIからの応答を解析しています。私の反応は次のようなものです:C#でJSONオブジェクトを反復する

[ 
    { 
    "id": "5241585099662481339", 
    "displayName": "Music", 
    "name": "music", 
    "slug": "music", 
    "imageUrl": "http://kcdn3.klout.com/static/images/music-1333561300502.png" 
    }, 
    { 
    "id": "6953585193220490118", 
    "displayName": "Celebrities", 
    "name": "celebrities", 
    "slug": "celebrities", 
    "imageUrl": "http://kcdn3.klout.com/static/images/topics/celebrities_b32741b6703151cc7bd85fba24c44c52.png" 
    }, 
    { 
    "id": "5757029936226020304", 
    "displayName": "Entertainment", 
    "name": "entertainment", 
    "slug": "entertainment", 
    "imageUrl": "http://kcdn3.klout.com/static/images/topics/Entertainment_7002e5d2316e85a2ff004fafa017ff44.png" 
    }, 
    { 
    "id": "3718", 
    "displayName": "Saturday Night Live", 
    "name": "saturday night live", 
    "slug": "saturday-night-live", 
    "imageUrl": "http://kcdn3.klout.com/static/images/icons/generic-topic.png" 
    }, 
    { 
    "id": "8113008320053776960", 
    "displayName": "Hollywood", 
    "name": "hollywood", 
    "slug": "hollywood", 
    "imageUrl": "http://kcdn3.klout.com/static/images/topics/hollywood_9eccd1f7f83f067cb9aa2b491cd461f3.png" 
    } 
] 

ご覧のとおり、5 idタグが含まれています。おそらく次回は6か1か他の番号になるでしょう。 JSONを繰り返し処理し、各idタグの値を取得します。どれくらいの数があるかを知らずにループを実行することはできません。これをどうすれば解決できますか?

答えて

55
dynamic dynJson = JsonConvert.DeserializeObject(json); 
foreach (var item in dynJson) 
{ 
    Console.WriteLine("{0} {1} {2} {3}\n", item.id, item.displayName, 
     item.slug, item.imageUrl); 
} 

または

var list = JsonConvert.DeserializeObject<List<MyItem>>(json); 

public class MyItem 
{ 
    public string id; 
    public string displayName; 
    public string name; 
    public string slug; 
    public string imageUrl; 
} 
+0

これは必須ではありませんが、これは構造体を事前に知らなくてもJObjectを反復できる唯一の答えです –

+2

残念ながら「動的」のキーワードは、以降のフレームワーク4.0から提供されています:(それものの –

15

あなたはJSONを読み、トークンを反復するJsonTextReaderを使用することができます。

using (var reader = new JsonTextReader(new StringReader(jsonText))) 
{ 
    while (reader.Read()) 
    { 
     Console.WriteLine("{0} - {1} - {2}", 
          reader.TokenType, reader.ValueType, reader.Value); 
    } 
} 
+2

both.ItのAPS.NETアプリケーションへの参照を追加したと言う10

使い方

 Dictionary<string, object> JSONDic = new Dictionary<string, object>(); JavaScriptSerializer js = new JavaScriptSerializer(); try { JSONDic = js.Deserialize<Dictionary<string, object>>(inString); JSONDeserialized = ""; indentLevel = 0; DisplayDictionary(JSONDic); return JSONDeserialized; } catch (Exception) { return "Could not parse input JSON string"; } 

+1

これは非常に良い答えです。解析されたJSONを完全に制御するオプションがあります。非常に便利、ありがとう! – Zoran

0

これは私のために働いた、読みやすいにネストされたJSONに変換し、 YAML

string JSONDeserialized {get; set;} 
    public int indentLevel; 

    private bool JSONDictionarytoYAML(Dictionary<string, object> dict) 
    { 
     bool bSuccess = false; 
     indentLevel++; 

     foreach (string strKey in dict.Keys) 
     { 
      string strOutput = "".PadLeft(indentLevel * 3) + strKey + ":"; 
      JSONDeserialized+="\r\n" + strOutput; 

      object o = dict[strKey]; 
      if (o is Dictionary<string, object>) 
      { 
       JSONDictionarytoYAML((Dictionary<string, object>)o); 
      } 
      else if (o is ArrayList) 
      { 
       foreach (object oChild in ((ArrayList)o)) 
       { 
        if (oChild is string) 
        { 
         strOutput = ((string)oChild); 
         JSONDeserialized += strOutput + ","; 
        } 
        else if (oChild is Dictionary<string, object>) 
        { 
         JSONDictionarytoYAML((Dictionary<string, object>)oChild); 
         JSONDeserialized += "\r\n"; 
        } 
       } 
      } 
      else 
      { 
       strOutput = o.ToString(); 
       JSONDeserialized += strOutput; 
      } 
     } 

     indentLevel--; 

     return bSuccess; 

    } 
それはMicrsofot.CSHARpとSystem.Core.Iに不足している参照が
関連する問題