我有一个Cell对象,如何获取该单元格的名称?
想要一个如下的功能:
String name = myCell.getName();
在Excel中,我在名称框中命名,所以我不想得到'B4',我想得到名称如“InterestRate”。
找不到这样的方法,我可以通过其他方式实现吗?
答案 0 :(得分:5)
要查找定义为与一个单元格完全匹配的命名范围,您需要以下内容:
// Get the cell we want to find - A1 for this case
Workbook wb = WorkbookFactory.create("input.xlsx");
int sheetIndex = 0;
Sheet s = wb.getSheetAt(sheetIndex);
Cell wanted = s.getRow(0).getCell(0);
String wantedRef = (new CellReference(wanted)).formatAsString();
// Check all the named range
for (int nn=0; nn<wb.getNumberOfNames(); nn++) {
Name n = wb.getNameAt(nn);
if (n.getSheetIndex() == -1 || n.getSheetIndex() == sheetIndex) {
if (n.getRefersToFormula().equals(wantedRef)) {
// Found it!
return name.getNameName();
}
}
}
请注意,这将返回应用于单元格的第一个命名范围,如果有多个并且您想要它们全部,那么您需要调整该代码以继续并返回一个列表