gpt4 book ai didi

java - 兴趣点 : output blank if formula returns blank

转载 作者:行者123 更新时间:2023-11-30 08:13:47 26 4
gpt4 key购买 nike

我在 Excel 中有这样一个公式:

=IF(A1="foo";"";"0")

如果公式返回空白值,我不希望 POI 创建的结果 csv 文件中有任何值。如果公式返回 0,我希望在我的 csv 文件中有一个 0

这是我的代码的一部分(问题始终是将代码剥离多少):

Iterator<Row> rowIterator = sheet.rowIterator();
while (rowIterator.hasNext()) {

Row row = rowIterator.next();
Iterator<Cell> cellIterator = row.cellIterator();
boolean isFirst = true;

for (int cn = 0; cn < row.getLastCellNum(); cn++) {
Cell cell = row.getCell(cn, Row.CREATE_NULL_AS_BLANK);
if (!isFirst) {
buffer.write(delimiter.getBytes(charset));
} else {
isFirst = false;
}

// Numeric Cell type (0)
// String Cell type (1)
// Formula Cell type (2)
// Blank Cell type (3)
// Boolean Cell type (4)
// Error Cell type (5)
if (cell.getCellType() == 0 || cell.getCellType() == 2) {
try {
if (DateUtil.isCellDateFormatted(cell)) {
cell.setCellType(Cell.CELL_TYPE_NUMERIC);
Date value = cell.getDateCellValue();
SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy");
if (cell.getNumericCellValue() < 1) {
sdf.applyPattern("HH:mm:ss");
}
buffer.write(sdf.format(value).getBytes(charset));
} else {
double valueDouble = cell.getNumericCellValue();
if (valueDouble == Math.ceil(valueDouble)) {
buffer.write(String.format("%d", (long) valueDouble).getBytes(charset));
} else {
valueDouble = round(valueDouble, roundingPlaces);
String value = String.valueOf(valueDouble).replace(".", ",");
buffer.write(value.getBytes(charset));
}
}
} catch (Exception e) {
// Formula returns a string
cell.setCellType(Cell.CELL_TYPE_STRING);
String value = cell.getStringCellValue();
buffer.write(value.getBytes(charset));
}
} else {
cell.setCellType(Cell.CELL_TYPE_STRING);
String value = cell.getStringCellValue();
buffer.write(value.getBytes(charset));
}
}
buffer.write("\r\n".getBytes(charset));
}

此代码在每种情况下都会在 csv 文件中生成 0。它来自行

double valueDouble = cell.getNumericCellValue();

documentation这点很清楚:

double getNumericCellValue()

Get the value of the cell as a number.

For strings we throw an exception. For blank cells we return a 0. For formulas or error cells we return the precalculated value;

如果单元格包含 NULL 值,我该如何分析?

最佳答案

我认为您的问题是公式返回字符“”或“0”,但您将其视为数字。

关于java - 兴趣点 : output blank if formula returns blank,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29816591/

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