共计 1412 个字符,预计需要花费 4 分钟才能阅读完成。
要在 Java 中获取 Excel 数据,可以使用 Apache POI 库。以下是获取 Excel 数据的基本步骤:
- 导入 Apache POI 库的依赖项。在 Maven 项目中,可以在 pom.xml 文件中添加以下依赖项:
<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
</dependency>
</dependencies>
- 创建一个
Workbook
对象,打开 Excel 文件:
File file = new File("path/to/excel.xlsx"); // 替换为实际的 Excel 文件路径
Workbook workbook = WorkbookFactory.create(file);
- 获取要读取的工作表:
Sheet sheet = workbook.getSheetAt(0); // 获取第一个工作表
- 遍历工作表中的每一行和每一列,并获取单元格的值:
for (Row row : sheet) {for (Cell cell : row) {String cellValue = cell.getStringCellValue();
System.out.print(cellValue + "\t");
}
System.out.println(); // 换行
}
完整代码示例:
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
public class ExcelReader {public static void main(String[] args) {try {File file = new File("path/to/excel.xlsx"); // 替换为实际的 Excel 文件路径
FileInputStream fis = new FileInputStream(file);
Workbook workbook = new XSSFWorkbook(fis);
Sheet sheet = workbook.getSheetAt(0); // 获取第一个工作表
for (Row row : sheet) {for (Cell cell : row) {String cellValue = cell.getStringCellValue();
System.out.print(cellValue + "\t");
}
System.out.println(); // 换行
}
workbook.close();
fis.close();} catch (IOException e) {e.printStackTrace();
}
}
}
注意:上述代码假设 Excel 文件的扩展名为.xlsx。如果 Excel 文件的扩展名为.xls,需要使用 HSSFWorkbook
代替XSSFWorkbook
。
丸趣 TV 网 – 提供最优质的资源集合!
正文完