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