
List<String> names = new ArrayList<>();
httpIds.sort(Integer::compareTo);
httpIds.forEach(id -> names.add(Arrays.asList(marketCache.getHttpById(id).getHttpUrl().split("/")).stream().reduce((first, second) -> second).orElse("no last element")+"-"+marketCache.getHttpById(id).getDescription()));
return String.join(";", names);插入代码片
3949

被折叠的 条评论
为什么被折叠?



