gpt4 book ai didi

java - Apache POI 如何使用条件格式更改数据格式

转载 作者:行者123 更新时间:2023-12-01 21:19:37 32 4
gpt4 key购买 nike

我是 Apache POI 的用户,我制作了 excel 文件 (.xlsx),并且需要在单元格上使用条件格式。我的问题是这样的:我有一个公式,如果这个公式返回一个介于 0 和 1 之间的值,我想用一位小数显示结果,相反我想用任何小数显示结果。可以使用条件格式吗?如果是,我该怎么做?

最佳答案

Cell new_cell = row.createCell(index_column_found);
XSSFCellStyle cs = wBook.createCellStyle();
XSSFDataFormat df = wBook.createDataFormat();
cs.setDataFormat(df.getFormat(cell_custom_format));
new_cell.setCellStyle(cs);

这与 POI 3.12 配合得很好

关于java - Apache POI 如何使用条件格式更改数据格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13699263/

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