- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么在 Apache POI 中更改单元格类型是非法的?下面的代码会导致IllegalStateException: Cannot get a error value from a numeric cell
。
Cell mycell = myrow.createCell(0);
// Make it numeric by default.
mycell.setCellType(Cell.CELL_TYPE_NUMERIC);
if (someCondition) {
mycell.setCellType(Cell.CELL_TYPE_STRING); // IllegalStateException
}
是否有办法解决这个问题(例如不引入额外的逻辑)?
最佳答案
我不确定这是否在避免您的“没有额外逻辑”,但这里是:
Cell mycell = myrow.createCell(0);
// Make it numeric by default.
int cellType = Cell.CELL_TYPE_NUMERIC;
if (someCondition) {
cellType = Cell.CELL_TYPE_STRING;
}
mycell.setCellType(cellType);
Javadoc 没有说明为什么它会抛出 IllegalStateException
,所以我会避免它(通过执行上述操作)或深入研究源代码。
关于java - Apache POI : changing CellType causes IllegalStateException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10849659/
问题: setCellType 已弃用。 row.getCell(0, Row.MissingCellPolicy.CREATE_NULL_AS_BLANK).setCellType(CellTyp
这个问题已经有答案了: Semicolon at end of 'if' statement (18 个回答) 已关闭 4 年前。 我正在使用 Apache POI 3.17。 org.ap
为什么在 Apache POI 中更改单元格类型是非法的?下面的代码会导致IllegalStateException: Cannot get a error value from a numeric
我在处理以下代码时遇到了问题。当我使用调试器时,遇到以下行时出现异常: dgvCalls.Columns.Insert(1, msisnnColumn); 我得到一个异常(exception): Co
我正在阅读 Apache poi 指南:https://poi.apache.org/spreadsheet/quick-guide.html 我决定继续将代码输入到我的 Eclipse 项目中,在编
我正在尝试将 Excel 文件中的数据获取到我的 Spring(Java) Web 应用程序中。我正在开发一个适用于 .xls 和 .xlsx Excel 文件的系统。我想检查任何单元格的单元格类型是
我尝试使用 RxSwift (3.6.1) 设置 tableView 数据源绑定(bind),但在构建应用程序时遇到错误: Ambiguous reference to member 'items(c
编译失败并出现此错误: cannot find symbol case FORMULA: symbol: variable FORMULA 接下来的情况会出现同样的错误。 我正在使用 Apache P
我在 ViewController 中有一个 CollectionView,我试图从 Realm 获取对象列表并使用 RxSwift 将其绑定(bind)到 CollectionView。 问题是我收
我是一名优秀的程序员,十分优秀!