java如何取出json数组中的值

54次阅读
没有评论

共计 894 个字符,预计需要花费 3 分钟才能阅读完成。

在 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 包时,需要将其添加到项目的依赖中。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-12发表,共计894字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)