标签:重复元素 查询 tde list add ring mil lis ext
......
//存储集合中所有售达方编码和送达方编码 HashSet<String> shopCodeSet = new HashSet(); for (int i = 0,length = pageInfo.getList().size();i<length;++i){ ContractRespDto contractRespDto = pageInfo.getList().get(i); shopCodeSet.add(contractRespDto.getDeliveryCode()); shopCodeSet.add(contractRespDto.getSoldCode()); } //从数据库中查询shopCodeSet中编码对应的店铺实体 List<ShopRespDto> shopRespDtoList =
iShopExtQueryApi.queryShopNameByShopCode(StringUtils.join(shopCodeSet,",")).getData();
......
说明:
1)HashSet实现了Set接口,不允许出现重复元素,不保证集合中元素的顺序,允许包含值为null的元素,但最多只能一个。
2)将集合HashSet通过StringUtils.join()转换成逗号分隔的字符串
标签:重复元素 查询 tde list add ring mil lis ext
原文地址:https://www.cnblogs.com/liaowenhui/p/11337206.html