web-dev-qa-db-ja.com

Javaを使用してJSONArray内のアイテムのメンバーにアクセスする

Javaでjsonを使い始めたばかりです。 JSONArray内の文字列値にアクセスする方法がわかりません。たとえば、私のjsonは次のようになります。

{
  "locations": {
    "record": [
      {
        "id": 8817,
        "loc": "NEW YORK CITY"
      },
      {
        "id": 2873,
        "loc": "UNITED STATES"
      },
      {
        "id": 1501
        "loc": "NEW YORK STATE"
      }
    ]
  }
}

私のコード:

JSONObject req = new JSONObject(join(loadStrings(data.json),""));
JSONObject locs = req.getJSONObject("locations");
JSONArray recs = locs.getJSONArray("record");

この時点で「レコード」JSONArrayにアクセスできますが、forループ内で「id」および「loc」値を取得する方法については不明です。この説明があまり明確でない場合は申し訳ありませんが、私はプログラミングに少し慣れています。

109
minimalpop

JSONArray.getJSONObject(int)JSONArray.length() を使用してforループを作成しようとしましたか?

for (int i = 0; i < recs.length(); ++i) {
    JSONObject rec = recs.getJSONObject(i);
    int id = rec.getInt("id");
    String loc = rec.getString("loc");
    // ...
}
201
notnoop

org.json.JSONArray は反復不可能です。
ここに net.sf.json.JSONArray の要素を処理する方法を示します。

    JSONArray lineItems = jsonObject.getJSONArray("lineItems");
    for (Object o : lineItems) {
        JSONObject jsonLineItem = (JSONObject) o;
        String key = jsonLineItem.getString("key");
        String value = jsonLineItem.getString("value");
        ...
    }

よく働く... :)

5
Piko

Java 8は、ほぼ20年後に市場に登場しました。Java8Stream APIを使用してorg.json.JSONArrayを繰り返す方法は次のとおりです。

import org.json.JSONArray;
import org.json.JSONObject;

@Test
public void access_org_JsonArray() {
    //Given: array
    JSONArray jsonArray = new JSONArray(Arrays.asList(new JSONObject(
                    new HashMap() {{
                        put("a", 100);
                        put("b", 200);
                    }}
            ),
            new JSONObject(
                    new HashMap() {{
                        put("a", 300);
                        put("b", 400);
                    }}
            )));

    //Then: convert to List<JSONObject>
    List<JSONObject> jsonItems = IntStream.range(0, jsonArray.length())
            .mapToObj(index -> (JSONObject) jsonArray.get(index))
            .collect(Collectors.toList());

    // you can access the array elements now
    jsonItems.forEach(arrayElement -> System.out.println(arrayElement.get("a")));
    // prints 100, 300
}

反復が1回だけの場合(.collectは不要)

    IntStream.range(0, jsonArray.length())
            .mapToObj(index -> (JSONObject) jsonArray.get(index))
            .forEach(item -> {
               System.out.println(item);
            });
4
prayagupd

コードを見ると、JSON LIBを使用しているように感じます。その場合は、次のスニペットを見て、json配列をJava配列に変換してください。

 JSONArray jsonArray = (JSONArray) JSONSerializer.toJSON( input );  
 JsonConfig jsonConfig = new JsonConfig();  
 jsonConfig.setArrayMode( JsonConfig.MODE_OBJECT_ARRAY );  
 jsonConfig.setRootClass( Integer.TYPE );  
 int[] output = (int[]) JSONSerializer.toJava( jsonArray, jsonConfig );  
2
Teja Kantamneni

それが他の誰かを助ける場合、私はこのようなことをしてアレイに変換することができました、

JSONObject jsonObject = (JSONObject)new JSONParser().parse(jsonString);
((JSONArray) jsonObject).toArray()

...または長さを取得できるはずです

((JSONArray) myJsonArray).toArray().length
0
wired00