characterIds = "1";
String[] split = characterIds.split(",");
int[] ints = Arrays.asList(split).stream().mapToInt(Integer::parseInt).toArray();
List<Integer> collect = Arrays.stream(ints).boxed().collect(Collectors.toList());
characterIds = "1";
String[] split = characterIds.split(",");
int[] ints = Arrays.asList(split).stream().mapToInt(Integer::parseInt).toArray();
List<Integer> collect = Arrays.stream(ints).boxed().collect(Collectors.toList());