mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
修复SXSSFWorkbook调用setComment时错位的问题
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
package cn.hutool.poi.excel;
|
||||
|
||||
import cn.hutool.poi.excel.cell.CellUtil;
|
||||
import org.apache.poi.ss.usermodel.Cell;
|
||||
import org.apache.poi.ss.usermodel.Row;
|
||||
import org.apache.poi.ss.usermodel.Sheet;
|
||||
import org.apache.poi.ss.usermodel.Workbook;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
|
||||
/**
|
||||
* https://gitee.com/dromara/hutool/issues/I6MBS5<br>
|
||||
* 经过测试,发现BigExcelWriter中的comment会错位<br>
|
||||
* 修正方式见: https://stackoverflow.com/questions/28169011/using-sxssfapache-poi-and-adding-comment-does-not-generate-proper-excel-file
|
||||
*/
|
||||
public class IssueI6MBS5Test {
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void setCommentTest() {
|
||||
final ExcelWriter writer = ExcelUtil.getBigWriter("d:/test/setCommentTest.xlsx");
|
||||
final Cell cell = writer.getOrCreateCell(0, 0);
|
||||
CellUtil.setCellValue(cell, "cellValue");
|
||||
CellUtil.setComment(cell, "commonText", "ascend", null);
|
||||
|
||||
writer.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void setCommentTest2() {
|
||||
final File file = new File("D:\\test\\CellUtilTest.xlsx");
|
||||
try (final Workbook workbook = WorkbookUtil.createBook(true)) {
|
||||
final Sheet sheet = workbook.createSheet();
|
||||
final Row row = sheet.createRow(0);
|
||||
final Cell cell = row.createCell(0);
|
||||
CellUtil.setCellValue(cell, "cellValue");
|
||||
CellUtil.setComment(cell, "commonText", "ascend", null);
|
||||
workbook.write(Files.newOutputStream(file.toPath()));
|
||||
} catch (final IOException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user