10 2021 档案
摘要:我一开始用的是这个: response.setCharacterEncoding("UTF-8"); response.setContentType("application/xlsx");// 设置输出格式头信息 response.setHeader("Content-Disposition",
阅读全文
摘要:1:将Enum中的值转换为集合 List<String> enumNames = Stream.of(Enum.values() . .map(Enum::name) .collect(Collectors.toList()); 2:集合获取交集,并集,差集,去重并集,List集合中的重复次数 交集
阅读全文