如何使用 java Apache POI 库从 XLSX 文件中的特定单元格获取值

问题描述 投票:0回答:6

我正在编写一个 Java 程序,使用 Apache POI 库从 Excel 工作表(具有 XLSX 扩展名)读取数据。我能够迭代所有单元格并获取所有值。但我无法获得特定的单元格值,例如 E10。 有什么办法可以做到这一点吗?

请参阅下面我用于迭代单元格的代码。

package application;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Iterator;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;

import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class ReadFromXLSX {
    public static void readXLSXFile() throws IOException
    {
        InputStream ExcelFileToRead = new FileInputStream("C:\\Test.xlsx");
        XSSFWorkbook  wb = new XSSFWorkbook(ExcelFileToRead);
        XSSFWorkbook test = new XSSFWorkbook(); 
        XSSFSheet sheet = wb.getSheetAt(0);
        XSSFRow row; 
        XSSFCell cell;
        Iterator rows = sheet.rowIterator();
        while (rows.hasNext())
        {
            row=(XSSFRow) rows.next();
            Iterator cells = row.cellIterator();
            while (cells.hasNext())
            {
                cell=(XSSFCell) cells.next();   
                if (cell.getCellType() == XSSFCell.CELL_TYPE_STRING)
                {
                    System.out.print(cell.getStringCellValue()+" ");
                }
                else if(cell.getCellType() == XSSFCell.CELL_TYPE_NUMERIC)
                {
                    System.out.print(cell.getNumericCellValue()+" ");
                }
                else
                {
                }
            }
            System.out.println();
        }
    }   
}
java excel
6个回答
31
投票

例如,要获取第一个工作表的 E10:

wb.getSheetAt(0).getRow(9).getCell(4); 

注意:减一,因为索引是基于空的。

您还可以使用这种便捷方法将 E 映射到 4。

wb.getSheetAt(0).getRow(9).getCell(CellReference.convertColStringToIndex("E"));

3
投票

要从 Excel 中的特定单元格获取值,您可以使用以下代码行。

wb.getSheetAt(0).getRow(1).getCell(1);

2
投票

XSSFSheet 有方法 getRow(int rownum) 它返回逻辑行(从 0 开始)。如果您请求未定义的行,您将得到空值。这就是说,第 4 行代表纸张上的第五行。

获取行后,您可以调用 XSSFRow 对象的 getCell(int cellnum) 方法。它返回给定索引(基于 0)的单元格。


2
投票

只需对

getCell
方法进行版本升级

public XSSFCell getCell(String cellName){
    Pattern r = Pattern.compile("^([A-Z]+)([0-9]+)$");
    Matcher m = r.matcher(cellName);
    XSSFWorkbook wb = new XSSFWorkbook();
    if(m.matches()) {
        String columnName = m.group(1);
        int rowNumber = Integer.parseInt(m.group(2));
        if(rowNumber > 0) {
            return wb.getSheetAt(0).getRow(rowNumber-1).getCell(CellReference.convertColStringToIndex(columnName));
        }
    }
    return null;
}

现在您可以通过这条线轻松获得细胞

getCell("E10")

1
投票
public class XmlFileRead {

public static void main(String[] args) throws IOException {
    FileInputStream fi = new FileInputStream("abc.xls");
    ArrayList<EmployeeVo> al = new ArrayList<>();
    EmployeeVo evo = null;
    Scanner scanner = null;

    Workbook wb = new XSSFWorkbook(fi);
    Sheet sh = wb.getSheet("Sheet0");
    int starRow = sh.getFirstRowNum();
    int endRow = sh.getLastRowNum();

    for (int i = starRow + 1; i < endRow; i++) {
        scanner = new Scanner(System.in);
        evo = new EmployeeVo();
        Cell c = wb.getSheetAt(0).getRow(i).getCell(1);
        evo.setEmployeeId((int) c.getNumericCellValue());

        Cell c2 = wb.getSheetAt(0).getRow(i).getCell(2);
        evo.setEmployeeName(c2.toString());
        // add to collection
        al.add(evo);
    } // for

    al.forEach(i -> {
        System.out.println(i.getEmployeeId() + " " + i.getEmployeeName());
    });

}
}

0
投票

sheet.getRow(X).getCell(C).getStringCellValue()

© www.soinside.com 2019 - 2024. All rights reserved.