前端传String字符串,例如:"1460,1231,5765,4567",中间用英文的逗号分割,将其转为不同类型的集合,调用的Java代码如下:
public static void main(String[] args) {
String input = "1460,1231,5765,4567";
// 转换为Long类型的列表
List<Long> longList = StringUtil.convertToLongList(input);
for (Long value : longList) {
System.out.println("Long:" + value);
}
// 转换为Double类型的列表
List<Double> doubleList = StringUtil.convertToDoubleList(input);
for (Double value : doubleList) {
System.out.println("Double:" + value);
}
// 转换为Integer类型的列表
List<Integer> integerList = StringUtil.convertToIntegerList(input);
for (Integer value : integerList) {
System.out.println("Integer:" + value);
}
// 转换为String类型的列表
List<St