我正在编写一个应用程序来生成 xls 表,我需要在其中合并一些行以制作列标题。虽然我一直在合并行,但这样做时单元格数据会丢失。以下是我的部分代码,请帮助!
Region region = new Region();
int firstRow = 1;
int lastRow = 3;
int firstCol = 0;
int lastCol = 6;
region.setColumnFrom((short)firstCol);
region.setColumnTo((short)lastCol);
region.setRowFrom(firstRow);
region.setRowTo(lastRow);
sheet.addMergedRegion(region);