多级表头,针对的是DefaultExcelBuilder、DefaultStreamExcelBuilder,效果如下:
实现方式
@ExcelColumn(title="拓展信息->年龄")
Integer age
默认以->
作为分隔符,也可自定义分隔符:@ExcelModel(titleSeparator="#")
@ExcelColumn(title="拓展信息#年龄")
Integer age
如采用动态构建,即使用titles(List<String> titles)
,代码如下:
List<String> titles=new ArrayList<>();
titles.add("拓展信息->年龄");