快捷搜索:  汽车  科技

easyexcel 导出指定的列(easypoi导出Excel根据内容如何自动调整列宽)

easyexcel 导出指定的列(easypoi导出Excel根据内容如何自动调整列宽)步骤2:定义实体类@Data public static class UserExt { private String userId; private String userName; private String userDesc; } /** * 模拟数据查询 */ public static List<UserExt> getDataList() { List<UserExt> list = new ArrayList<>(); for (int i = 1; i < 10; i ) { UserExt ext = new UserExt(); ext.setUserId("userId"

在使用easypoi导出EXCEL的时候,我们通常会遇到需要根据内容自动调整列宽的情况

只要调用 Sheet.autoSizeColumn(2)函数,就可以实现列宽自动调整,调整后,我们可以查看调整后的列宽度,需要注意的是列最大宽度为 255*256=65280

下面是一个完整的使用模板根据内容多少自适应宽度的例子

步骤1:设置模板

easyexcel 导出指定的列(easypoi导出Excel根据内容如何自动调整列宽)(1)

步骤2:定义实体类

@Data public static class UserExt { private String userId; private String userName; private String userDesc; } /** * 模拟数据查询 */ public static List<UserExt> getDataList() { List<UserExt> list = new ArrayList<>(); for (int i = 1; i < 10; i ) { UserExt ext = new UserExt(); ext.setUserId("userId" i); ext.setUserName("userName" i); String desc = "我是一个比较长的个人简介----------" i; ext.setUserDesc(desc.repeat(i)); list.add(ext); } return list; }

步骤3:导出EXCEL并设置第3列的宽度为自动调整

@Test void test3() throws IOException { List<UserExt> dataList = getdataList(); Map<String Object> map = new Hashmap<>(); map.put("dataList" dataList); TemplateExportParams params = new TemplateExportParams("template/导出测试模版.xlsx"); String path = "E:\\work-idea\\导出测试结果-自适应宽度" System.currentTimeMillis() ".xlsx"; try ( Workbook workbook = ExcelExportUtil.exportExcel(params map); OutputStream os = Files.newOutputStream(Path.of(path) StandardOpenOption.CREATE_NEW StandardOpenOption.WRITE); ) { //第3列自适应宽度 Sheet sheet = workbook.getSheetAt(0); sheet.autoSizeColumn(2); workbook.write(os); } }

导出效果如下

easyexcel 导出指定的列(easypoi导出Excel根据内容如何自动调整列宽)(2)

猜您喜欢: