- Convert json string to list
String blackUids = "[1,2,3,4]";
List<Long> ids = JSONObject.parseArray(blackUids, Long.class);
- Convert comma separated string to list
List<Long> uids = Arrays.asList(blackListUids.split(",")).stream().map(uid -> NumberUtils.toLong(uid)).collect(Collectors.toList());
- convert string to array
String[] skuIds = skuLevelBonusMergeDTO.getSkuIds().split(",")
- to be continued
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。