要将JSONArray转换为List,可以使用以下方法:
import com.fasterxml.jackson.databind.ObjectMapper;
import org.json.JSONArray;
JSONArray jsonArray = new JSONArray("[1, 2, 3]");
ObjectMapper objectMapper = new ObjectMapper();
List<Integer> list = objectMapper.readValue(jsonArray.toString(), new TypeReference<List<Integer>>() {});
import org.json.JSONArray;
JSONArray jsonArray = new JSONArray("[1, 2, 3]");
List<Integer> list = new ArrayList<>();
for (int i = 0; i < jsonArray.length(); i++) {
list.add(jsonArray.getInt(i));
}
import org.json.JSONArray;
JSONArray jsonArray = new JSONArray("[1, 2, 3]");
List<Integer> list = IntStream.range(0, jsonArray.length())
.mapToObj(jsonArray::getInt)
.collect(Collectors.toList());
这些方法都可以将JSONArray转换为List,你可以根据需要选择适合你的情况的方法。