Map<String, List<PointsLogEntity>> dataTimePointLog = pointsLogEntityList.stream().collect(Collectors.groupingBy(item -> new SimpleDateFormat("yyyy-MM-dd").format(new Date(item.getTime()))));
用stream流比较List<对象>内的时间戳进行分组 按天
于 2021-03-13 16:12:37 首次发布