我正在使用来自CellReference的apache poi 3.11,可以使用以下代码获取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实例。