gpt4 book ai didi

java - 如何使用 Cell 获取 Cell Reference?

转载 作者:搜寻专家 更新时间:2023-11-01 01:41:44 32 4
gpt4 key购买 nike

我正在使用 apache poi 3.11,从 CellReference,我可以使用以下代码获取 rowIndex 和 Column Index。

CellReference cr = new CellReference("A1");
row = mySheet.getRow(cr.getRow());
cell = row.getCell(cr.getCol());

但是我的 rowIndex 和 columnIndex 是动态生成的,如何使用 rowIndex 和 columnIndex 获取 CellReference?

XSSFRow row = mySheet.getRow(rowIndex); 
XSSFCell cell = row.getCell(columnIndex);

最佳答案

使用 CellReference 类的 CellReference(int pRow, int pCol) 构造函数和所创建实例的 formatAsString 方法创建 CellReference 实例。

关于java - 如何使用 Cell 获取 Cell Reference?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33095423/

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