使用 Apache POI 合并 Excel 中的单元格
2022-08-31 13:05:23
有没有其他方法可以使用Apache POI库在Excel中合并单元格?
我正在尝试使用以下,但它不起作用
// selecting the region in Worksheet for merging data
CellRangeAddress region = CellRangeAddress.valueOf("A" + rowNo + ":D"
+ rowNo);
// merging the region
sheet1.addMergedRegion(region);