中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java如何取出json數組中的值

小億
132
2023-11-14 17:10:48
欄目: 編程語言

在Java中,可以使用Java標準庫中的org.json包來解析和處理JSON數據。以下是如何取出JSON數組中的值的示例代碼:

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

public class Main {
    public static void main(String[] args) {
        // JSON數組的示例數據
        String jsonStr = "[{\"name\":\"John\",\"age\":30,\"city\":\"New York\"},{\"name\":\"Alice\",\"age\":25,\"city\":\"London\"}]";

        try {
            // 將JSON字符串轉換為JSON數組
            JSONArray jsonArray = new JSONArray(jsonStr);

            // 遍歷JSON數組
            for (int i = 0; i < jsonArray.length(); i++) {
                // 獲取數組中的JSON對象
                JSONObject json = jsonArray.getJSONObject(i);

                // 取出JSON對象中的值
                String name = json.getString("name");
                int age = json.getInt("age");
                String city = json.getString("city");

                // 打印取出的值
                System.out.println("Name: " + name);
                System.out.println("Age: " + age);
                System.out.println("City: " + city);
                System.out.println();
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }
    }
}

運行以上代碼,會輸出如下結果:

Name: John
Age: 30
City: New York

Name: Alice
Age: 25
City: London

注意:在使用org.json包時,需要將其添加到項目的依賴中。

0
原阳县| 庆安县| 桐柏县| 平舆县| 绍兴县| 栾城县| 漳浦县| 大渡口区| 大竹县| 喀喇| 金山区| 错那县| 将乐县| 张掖市| 吉安市| 日喀则市| 邵武市| 上饶县| 北海市| 祥云县| 张家川| 布尔津县| 肇庆市| 韶关市| 会理县| 廉江市| 南靖县| 遵化市| 天峻县| 阿坝县| 上犹县| 于田县| 平顶山市| 新巴尔虎左旗| 丰都县| 新建县| 昌吉市| 德州市| 高陵县| 东港市| 浦江县|