使用Apache POI在Excel文件中获取列的名称
2022-09-03 08:53:49
如何使用 Apache POI 获取 Excel 文件中的列名,以确保列按预期排序。
如何使用 Apache POI 获取 Excel 文件中的列名,以确保列按预期排序。
有一个方便的方法:
CellReference.convertNumToColString(cell.getColumnIndex());
要获取全名:
private static String getCellName(Cell cell)
{
return CellReference.convertNumToColString(cell.getColumnIndex()) + (cell.getRowIndex() + 1);
}
或者这个:
cell.getSheet().getRow(0).getCell(currentcellIndex)
.getRichStringCellValue().toString()
行索引从 0 开始。