1
Workbook book=new XSSFWorkbook();
    Sheet sheet=book.createSheet("my");
    for (int i = 0; i < 10; i++) {

            sheet.createRow(1).createCell(i);
            sheet.addMergedRegion(new CellRangeAddress(1,(short)1,i,(short)i+1));


    }
     FileOutputStream out = new FileOutputStream("D:\\CIT\\Library\\mysample.xlsx");
        book.write(out);
        out.close();
}

我在循环中使用此代码创建合并单元格,但不幸的是,我收到此错误“Excel 在 'dkdkd.xlsx' 中找到不可读的内容,是否要恢复此工作簿的内容?如果您信任此工作簿的来源,请单击是。”

4

1 回答 1

0

问题是,合并的区域重叠。在第一次迭代中,您将单元格 (1,1) 合并到 (1,2)。在第二(1,2)到(1,3)。它们在 (1,2) 中重叠。

于 2014-10-27T12:56:44.423 回答