从 Java 中的 JSONArray 获取一组整数?

Getting set of Integers from a JSONArray in Java?

我有以下 java 代码,我试图从 JSONArray 对象中提取一组整数。我该怎么做?

JSONObject actionDetail = new JSONObject("myJsonOject");

int personId = actionDetail.getInt("personId");
JSONArray addressIds = actionDetail.getJSONArray("addressIds");

Action action = new Action();

action.setPersonId(personId); //working ok

action.setAddressIds(): //todo - how to get list of ints from the JsonArray?

注意addressIds字段的类型是:Set<Integer>

您可以尝试类似的方法:

Set<Integer> result = IntStream.range(0, addressIds.length())
        .mapToObj(addressIds::get)
        .map(Integer::valueOf)
        .collect(Collectors.toSet());

您可以尝试在流中将对象转换为整数。

action.setAddressIds(addressIds.toList().stream().map(k -> (Integer) k).collect(Collectors.toSet()));