excelUtil支持map或bean对象导出

准备数据:

多类对象封装成一个大对象
class bean{
private bean1 bean1;
private bean2 bean2;
}
封装到数据到bean中,使用hutool的excelUtil工具直接导出发现无法识别子类,会将子类的所有字段放置到大对象的的字段下,于是想到将bean对象转map,将小类的所有字段放在一个map中,这样写的好处是避免了对bean数据的一个个set/get值

获取子类上注解值遍历成map:

 List> data = new ArrayList<>();
        projects.forEach(hardBean -> {
            LinkedHashMap map = new LinkedHashMap<>();
            map.putAll(beanToMap(Bean.getBean1()));
           ...
            data.add(map);
        });
============================================================
 private static  Map beanToMap(T bean) {
        LinkedHashMap map = new LinkedHashMap<>(16);
        if (bean != null) {
            Field[] declaredFields = bean.getClass().getDeclaredFields();//使用反射获取对象的类属性
            BeanMap beanMap = BeanMap.create(bean);
            for (Field field : declaredFields) {
                field.setAccessible(true);//设置成true才能获取注解名
                HeaderName annotation = field.getAnnotation(HeaderName.class);//获取类上注解信息
                if (annotation != null) {
                    String value = annotation.value();//获取注解绑定的value值
                    map.put(value, beanMap.get(field.getName()));
                }
            }
        }
        return map;
    }

excelUtil支持map或bean对象导出

 ExcelWriter writer = ExcelUtil.getWriter();
 writer.write(data, true);//true将数据的key作为标题

表头数据封装

// 合并单元格后的标题行,使用默认标题样式
        writer.merge(0, 0, 0, 6, "概览", true);//合并单元格使用,单个单元个不可合并,true样式设置成系统默认的样式
     ...
        writer.getOrCreateCell(34,0).setCellValue("信息");//设置单个单元格的内容
        writer.getCell(34,0).setCellStyle(writer.getHeadCellStyle());//设置单元格的样式跟着上述表头的样式走

你可能感兴趣的:(excelUtil支持map或bean对象导出)