摘要:
java8 stream流操作的flatMap(流的扁平化):https://blog.csdn.net/Mark_Chao/article/details/80810030 阅读全文
摘要:
List<CommonExportDTO> commonList; // 取字段string转int构建新列表List<Integer> collect = commonList.stream().map(dto -> Integer.valueOf(dto.getCell6())).collect 阅读全文
摘要:
// 合并单元格 sheet.addMergedRegion(new CellRangeAddress(0,1,2,4); // 参数 合并0行到1行,2列到4列区域 // 设置合并单元格后表格边框 setRegionBorder(1,new CellRangeAddress(0,1,2,4),sh 阅读全文
摘要:
枚举类(Enum) 7种常见的用法: https://blog.csdn.net/qidasheng2012/article/details/84300869 阅读全文