摘要: let endDate=new Date();//获取系统当前时间 endDate.setHours(0);//设置当前系统时间 时为零 endDate.setMinutes(0);//设置当前系统时间 分为零 endDate.setSeconds(0);//设置当前系统时间 秒为零 endDate 阅读全文
posted @ 2021-01-26 12:35 哎丫丫呀喂 阅读(648) 评论(0) 推荐(0) 编辑
摘要: //当前系统时间 LocalDateTime now = LocalDateTime.now(); //输出now:2021-01-26T12:22:21.319 System.out.println(now); //当前系统时间三天后 LocalDateTime threeDaysLater = 阅读全文
posted @ 2021-01-26 12:28 哎丫丫呀喂 阅读(2553) 评论(0) 推荐(0) 编辑
摘要: 一、分组(单个字段) 1、分组:Map<Integer,List<BaseOrganizationVO>> iuIdMap = list.stream().collect(Collectors.groupingBy(BaseOrganizationVO :: getOrgId)); 2、取值: if 阅读全文
posted @ 2021-01-22 14:19 哎丫丫呀喂 阅读(7172) 评论(0) 推荐(0) 编辑
摘要: String auctionBlockIds="45,46,47"; 一、String 转List<String> List<String> auctionBlockId= Arrays.asList(auctionBlockIds.split(",")).stream().map(block -> 阅读全文
posted @ 2021-01-22 14:04 哎丫丫呀喂 阅读(5745) 评论(2) 推荐(1) 编辑