Java 中从 JSON 数组获取值可通过以下方法:使用 GSON 库:将 JSON 字符串解析为 JSON 数组,然后遍历数组获取值。使用 org.json 库:创建 JSON 数组,获取数组长度,然后遍历数组获取值。使用 Jackson 库:将 JSON 字符串解析为数组,然后遍历数组获取值。
Java 中 JSON 数组取值
Java 中可以通过以下方法从 JSON 数组中获取值:
1. 使用 GSON 库
使用 GSON 库是获取 JSON 数组值最简单的方法之一。
立即学习“Java免费学习笔记(深入)”;
import com.google.gson.Gson;import com.google.gson.JsonElement;import com.google.gson.JsonArray;// JSON 字符串String jsonString = "[1, 2, 3]";// 创建 GSON 对象Gson gson = new Gson();// 解析 JSON 字符串JsonElement jsonElement = gson.fromJson(jsonString, JsonElement.class);// 检查是否为数组if (jsonElement.isJsonArray()) { // 转换为 JSON 数组 JsonArray jsonArray = jsonElement.getAsJsonArray(); // 遍历数组并获取值 for (JsonElement element : jsonArray) { System.out.println(element.getAsInt()); // 1, 2, 3 }}
登录后复制
2. 使用 org.json 库
org.json 库提供了另一种获取 JSON 数组值的方法。
import org.json.JSONArray;import org.json.JSONObject;// JSON 字符串String jsonString = "[1, 2, 3]";// 创建 JSON 数组JSONArray jsonArray = new JSONArray(jsonString);// 获取数组长度int length = jsonArray.length();// 遍历数组并获取值for (int i = 0; i < length; i++) { System.out.println(jsonArray.getInt(i)); // 1, 2, 3}
登录后复制
3. 使用 Jackson 库
Jackson 库也允许从 JSON 数组中获取值。
import com.fasterxml.jackson.core.JsonParseException;import com.fasterxml.jackson.databind.JsonMappingException;import com.fasterxml.jackson.databind.ObjectMapper;// JSON 字符串String jsonString = "[1, 2, 3]";// 创建 ObjectMapper 对象ObjectMapper mapper = new ObjectMapper();// 转换为数组int[] array = mapper.readValue(jsonString, int[].class);// 遍历数组并获取值for (int element : array) { System.out.println(element); // 1, 2, 3}
登录后复制
以上就是java json数组怎么取值的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/3039018.html