我有一个我知道列号的单元格。我需要使用Apache POI找出对应的字母。
String column_letter = newCellReference(cell).convertNumToColString(column_number);
这是我尝试过的方法,但是没有用。
答案 0 :(得分:2)
CellReference.convertNumToColString是一种static
方法。因此,不需要new CellReference
对象。而且它需要来自cell
的数字列索引,可以通过Cell.getColumnIndex获得。
所以
String column_letter = CellReference.convertNumToColString(cell.getColumnIndex());