[java] 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”값을 얻는 방법이 확실하지 않습니다. 이 설명이 너무 명확하지 않은 경우 죄송합니다. 저는 프로그래밍에 익숙하지 않습니다.



답변

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");
    // ...
}


답변

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");
        ...
    }

잘 작동합니다 … 🙂


답변

Java 8은 거의 20 년 만에 출시되었으며 다음은 org.json.JSONArrayjava8 Stream API 로 반복하는 방법 입니다.

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
}

반복이 한 번 뿐인 경우 (필요 없음 .collect)

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


답변

코드를 보면 JSONLIB를 사용하고 있음을 알 수 있습니다. 이 경우 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 );  


답변

다른 사람에게 도움이되는 경우 다음과 같이하여 배열로 변환 할 수있었습니다.

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

… 또는 길이를 얻을 수 있어야합니다.

((JSONArray) myJsonArray).toArray().length


답변

HashMap regs = (HashMap) parser.parse (stringjson);

(String) (( HashMap ) regs.get ( “firstlevelkey”)). get ( “secondlevelkey”);


답변