使用stream遍历对象集合,取出所有对象的某字段,并以逗号拼接起来
遍历对象集合,取出所有对象的某字段,并以逗号拼接起来
phoneBrands 是所有手机品牌数组,下面使用stream来把品牌名用逗号分隔 拼接起来 List<Brands> phoneBrands = brandsService.getBrandsByIds(id); String phoneName = phoneBrands.stream().map(phoneBrands::getPhoneName).collect(Collectors.joining(","));
原文地址:https://blog.csdn.net/SSHLY3/article/details/143586754
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!