21xrx.com
2024-11-05 12:19:54 Tuesday
登录
文章检索 我的文章 写文章
使用Java导入.xlsx文件的方法
2023-06-12 01:57:20 深夜i     --     --
Java

在开发过程中,我们常常需要从 Excel 表格中读取数据。而常见的 Excel 文件后缀为 .xlsx。在 Java 中,如果要对 .xlsx 文件进行读取操作,则需要使用特殊的库和方法。本文将介绍如何使用 Java 中的 Apache POI 库对 .xlsx 文件进行读取操作。

步骤如下:

1.引入Maven依赖


   org.apache.poi

   poi-ooxml

   4.1.2

2.使用POI读取xlsx文件


File file = new File("文件路径");

Workbook workbook = WorkbookFactory.create(file);

Sheet sheet = workbook.getSheetAt(0);

3.遍历表格数据


int rowEnd = sheet.getLastRowNum();

for (int i = 0; i <= rowEnd; i++) {

  Row row = sheet.getRow(i);

  if (row == null)

    continue;

  

  int cellEnd = row.getLastCellNum();

  for (int j = 0; j < cellEnd; j++) {

    Cell cell = row.getCell(j);

    if (cell == null)

      continue;

    

    String cellValue = cell.toString();

    System.out.print(cellValue + "\t");

  }

  System.out.println();

}

通过以上步骤,我们就可以成功地读取 .xlsx 文件中的数据了。

.xlsx、导入

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复