java怎么json解析字符串数组
java 中解析 json 字符串数组的方法有:使用内置的 jsonarray 类,如 jsonarray jsonarray = new jsonarray("[1, 2, 3, 4, 5]");。使用第三方库,如 jackson 或 gson,如 int[] array = mapper.readvalue("[1, 2, 3, 4, 5]", int[].class);。
使用内置方法
Java 提供了 JSONArray 类用于解析 JSON 字符串数组。
import org.json.JSONArray; JSONArray jsonArray = new JSONArray("[1, 2, 3, 4, 5]");
使用第三方库
也可以使用第三方库,如 Jackson 或 Gson,来解析 JSON 字符串数组。
Jackson
import com.fasterxml.jackson.databind.ObjectMapper; ObjectMapper mapper = new ObjectMapper(); int[] array = mapper.readValue("[1, 2, 3, 4, 5]", int[].class);
Gson
import com.google.gson.Gson; Gson gson = new Gson(); int[] array = gson.fromJson("[1, 2, 3, 4, 5]", int[].class);
步骤
示例
以下代码示例演示如何解析 JSON 字符串数组并获取其元素:
JSONArray jsonArray = new JSONArray("[1, 2, 3, 4, 5]"); for (int i = 0; i < jsonArray.length(); i++) { int number = (int) jsonArray.get(i); System.out.println(number); }
输出
1 2 3 4 5
以上就是java怎么json解析字符串数组的详细内容,更多请关注硕下网其它相关文章!