多级表头,针对的是DefaultExcelBuilder、DefaultStreamExcelBuilder,效果如下:

13. 多级表头 - 图1

实现方式

  1. @ExcelColumn(title="拓展信息->年龄")
  2. Integer age

默认以->作为分隔符,也可自定义分隔符:@ExcelModel(titleSeparator="#")

  1. @ExcelColumn(title="拓展信息#年龄")
  2. Integer age

如采用动态构建,即使用titles(List<String> titles),代码如下:

  1. List<String> titles=new ArrayList<>();
  2. titles.add("拓展信息->年龄");