How can I get this header from java code with apache POI?
Asked
Active
Viewed 3,935 times
1
-
Same way you would in Excel, i.e. merged cells? – Gagravarr Sep 07 '16 at 16:45
1 Answers
1
Usually you do that by merging two cells for all the "Projets" items.
See https://poi.apache.org/spreadsheet/quick-guide.html#MergedCells
Basically you define all the merged areas with calls like this
sheet.addMergedRegion(new CellRangeAddress(
0, //first row (0-based)
0, //last row (0-based)
0, //first column (0-based)
1 //last column (0-based)
));
See also Setting value to cells after merging in POI and Merging cells in Excel using Apache POI for more discussion around this.