gpt4 book ai didi

java - 将 org.apache.poi.ss.usermodel.Cell 的 Cellstyle 设置为 boolean 值

转载 作者:行者123 更新时间:2023-12-02 08:06:52 25 4
gpt4 key购买 nike

我想将 boolean 值写入 Excel 单元格,但不是将单元格样式设置为“逻辑”,而是将单元格样式设置为“数字”。

private void writeToDocument(XSSFWorkbook workbook) {
Sheet sheet = workbook.createSheet("testSheet");
Row row = sheet.createRow(0);
Cell cell = row.createCell(0);
cell.setCellValue(true);
}

我已经尝试过了

CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setDataFormat([short s]);
cell.setCellStyle(cellStyle);

但是 0 到 49 之间的短 s 没有完成这项工作。

最佳答案

例如,当使用 setCellValue 的适当重载版本时,将自动分配单元格类型

cell.setCellValue(true);
System.out.println(cell.getCellType());

打印BOOLEAN

检查org.apache.poi:poi:4.1.1

关于java - 将 org.apache.poi.ss.usermodel.Cell 的 Cellstyle 设置为 boolean 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49689317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com