การเข้าถึงสมาชิกของรายการใน JSONArray ด้วย Java


122

ฉันเพิ่งเริ่มใช้ json กับ java ฉันไม่แน่ใจว่าจะเข้าถึงค่าสตริงภายใน 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 "record" ได้แล้ว แต่ไม่แน่ใจว่าจะได้รับค่า "id" และ "loc" ภายใน a for loop ได้อย่างไร ขออภัยหากคำอธิบายนี้ไม่ชัดเจนเกินไปฉันยังใหม่กับการเขียนโปรแกรมเล็กน้อย


2
อีกสิ่งหนึ่ง (คุณอาจพบ) - คุณพลาดเครื่องหมายจุลภาคหลังค่ารหัสที่สาม ควรใช้ตัวแยกวิเคราะห์เสมอเช่นjson.parser.online.fr
Krystian

คำตอบ:


218

คุณได้ลองใช้JSONArray.getJSONObject (int)และJSONArray.length ()เพื่อสร้าง for-loop ของคุณหรือไม่:

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

ฉันไม่เข้าใจ ถ้าเราได้idsinple getIntเช่นเราได้รับค่าของ hashmap โดยการระบุคีย์ทำไมเราต้องวนซ้ำด้วย for loop? การวนซ้ำด้วยการวนซ้ำทำให้idได้รับมอบหมายint idหลายครั้งหรือไม่?
นาวา

สำหรับ JSON ที่ซับซ้อนมากขึ้นพบว่าโซลูชันที่ดีนี้ต่อตัวอย่าง
javacodegeeks.com/core-java/json/…

ฉันจะทำสิ่งนี้สำหรับ php ได้อย่างไร
Hanie Asemi

วิธีนี้จะทำงานอย่างไรถ้าฉันรู้ ID แต่ต้องการ loc ที่ตรงกัน
ToofanHas ถึง

6

org.json.JSONArrayไม่ iterable
นี่คือวิธีที่ฉันประมวลผลองค์ประกอบใน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");
        ...
    }

ใช้งานได้ดี ... :)


10
สิ่งนี้ไม่ได้ผลสำหรับฉันเนื่องจาก a JSONArrayไม่สามารถทำซ้ำได้
michel404

8
org.json.JSONArrayไม่สามารถทำซ้ำได้ แต่net.sf.json.JSONArrayสามารถทำได้
majgis

ลิงก์ของคุณเสีย
VdeX

4

Java 8 อยู่ในตลาดหลังจากผ่านไปเกือบ 2 ทศวรรษต่อไปนี้เป็นวิธีการวนซ้ำorg.json.JSONArrayด้วย java8 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);
            });

1
.mapToObjแสดง "ข้อยกเว้นที่ไม่สามารถจัดการได้: JSONException"
Andrejs

1
ในไวยากรณ์.mapToObj(index -> (JSONObject) array.get(index)), เอาใจใส่jsonArray.get(index)ซึ่งอาจจะโยนJSONExceptionแต่JSONException extends RuntimeExceptionดังนั้นจึงควรปรับอย่างน้อยที่รวบรวมเวลา
prayagupd

2

เมื่อดูรหัสของคุณฉันรู้สึกว่าคุณใช้ 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 );  

0

ในกรณีที่มันช่วยคนอื่นฉันสามารถแปลงเป็นอาร์เรย์ได้โดยทำสิ่งนี้

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

... หรือคุณควรจะได้รับความยาว

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

org.json.JSONObjectมีtoJSONArray(JSONArray names)วิธีการและorg.json.JSONArrayมีtoJSONObject(JSONArray names)วิธีการ แต่ไม่มีtoArray()วิธีการ
BrionS

-1

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

(สตริง) (( HashMap ) regs.get ("firstlevelkey")) รับ ("secondlevelkey");


1
การชี้แจงเพิ่มเติมเล็กน้อยว่าทำไมคำตอบของคุณจึงดีกว่าคำตอบที่ยอมรับในปัจจุบันจะช่วยให้เข้าใจวิธีแก้ปัญหาของคุณ
Vadimo
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.