需要帮助才能从" List Price Total"中获取合并的单元格值。 。 如上图所示,它是一个从第13行到第18行的合并单元格。 我使用下面的代码来获取值,但仍然将其设为null。
CellRangeAddress mergedCell = new CellRangeAddress(12, 17, 9, 9);
int rowNum = mergedCell.getFirstRow();
int lastRow = mergedCell.getLastRow();
int colIndex = mergedCell.getFirstColumn();
for (int rowCounter = rowNum; rowCounter < lastRow; rowCounter++) {
Cell cell2Update = sheet.getRow(rowCounter).getCell(colIndex);
cell2Update.setCellType(Cell.CELL_TYPE_NUMERIC);
CellValue c = evaluator.evaluate(cell2Update);
if (null != c) {
Double lisPrice= c.getNumberValue();
if (lisPrice> 0) {
spreadheetResultData.setListPricetotal(df.format(lisPrice));
}
}
}
请帮助我获取合并的单元格值。