如何用Apache POI读取Excel的单元格自定义名称的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用Apache POI读取Excel的单元格自定义名称的值相关的知识,希望对你有一定的参考价值。

参考技术A 可以看看这一页
要一个其中的例子

Java code
// Setup code
String cellName = "TestName";
Workbook wb = getMyWorkbook(); // retrieve workbook

// Retrieve the named range
// Will be something like "$C$10,$D$12:$D$14";
int namedCellIdx = wb.getNameIndex(cellName);
Name aNamedCell = wb.getNameAt(namedCellIdx);

// Retrieve the cell at the named range and test its contents
// Will get back one AreaReference for C10, and
// another for D12 to D14
AreaReference[] arefs = AreaReference.generateContiguous(aNamedCell.getRefersToFormula());
for (int i=0; i<arefs.length; i++)
// Only get the corners of the Area
// (use arefs[i].getAllReferencedCells() to get all cells)
CellReference[] crefs = arefs[i].getCells();
for (int j=0; j<crefs.length; j++)
// Check it turns into real stuff
Sheet s = wb.getSheet(crefs[j].getSheetName());
Row r = s.getRow(crefs[j].getRow());
Cell c = r.getCell(crefs[j].getCol());
// Do something with this corner cell

本回答被提问者和网友采纳

以上是关于如何用Apache POI读取Excel的单元格自定义名称的值的主要内容,如果未能解决你的问题,请参考以下文章

如何用java读取excel文件

poi excel如何用java代码生成

如何用Apache POI操作Excel文件

java用poi读取excel文件时怎么获取每个单元格的列宽?

求 java用poi包读取excel单元格长度宽度的方法

是在java中,如何用Poi导出excel,导出的是一个jsp页面的列表,并且,POI.jar包如何下载?