gpt4 book ai didi

java - POI 的 getCellNum 方法的替代方法

转载 作者:行者123 更新时间:2023-12-01 19:30:06 26 4
gpt4 key购买 nike

我正在开发一个使用 getCellNum 方法的遗留系统

<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.11</version>

其用法:

private void setValue(BpShipment entity, HSSFCell cell) {
if (cell != null) {
int cnum = cell.getCellNum(); // not found error
// the rest of the code

当我开始在一些新代码上使用较新的 POI 版本时

<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>

我开始在遗留代码中遇到错误,指出 getCellNum() 无法解析。有谁知道新 POI 版本中 getCellNum 的替代品是什么?

注意:

遗留代码类和新代码类都存在于同一个maven项目中,所以我只能使用其中一个POI依赖项,还是可以同时使用两者?谢谢。

最佳答案

它列在 deprecated list 中:

org.apache.poi.hssf.usermodel.HSSFCell.getCellNum() (2008 年 10 月)使用 HSSFCell.getColumnIndex()

关于java - POI 的 getCellNum 方法的替代方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60001406/

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