工具类

1、字符串转整型数组

public static List StringToList(String ids) {
        return Arrays.stream(ids.split(",")).map(Integer::parseInt).collect(Collectors.toList());
    }

你可能感兴趣的:(工具类)