10J 高级 WebDriver – 使用 POI 从 excel 读取数据

原文: https://javabeginnerstutorial.com/selenium/10j-advanced-webdriver-reading-data-from-excel-using-poi/

朋友! 今天,让我们深入研究 excel 表并了解如何从中读取数据。 作为自动化和构建自动化框架的一部分,我们倾向于将数据以预定义的格式(通常遵循模板)存储在 excel 表中。 我们存储的数据主要是测试数据,不同的测试 URL,发布特定的参数等。在这种情况下,知道如何在我们的代码中处理 excel 表就变得非常重要。

这将是另一篇纯 Java 文章。 因此,您该喝一杯咖啡(Java)了!! 我们将使用 POI jar 来实现此目的。

步骤 1:

与往常一样,我们的第一步是下载所需的 POI JAR。 转至 Apache POI ,然后下载最新稳定版本的二进制发行版(在撰写本文时,3.17 是最新稳定发行版)。 单击该 zip 文件的二进制版本,重定向到实际的下载页面

POI download link

步骤 2:

将这些 JAR 添加到我们的项目构建路径中。 确保选择“poi-x.xx”,“ooxml-lib”和“lib”文件夹下的所有 JAR。 我还将这些以及其他所有代码文件都放在了我们的 GitHub 仓库中。

我们之前已经多次看到这种添加 JAR 来构建路径过程的内容,因此我没有在重复它(有关详细说明,请参阅此文章的步骤 3)。

步骤 3:

创建一个新类“ExcelOperationsUsingPOI.java”。 在此类中,让我们有一种从特定位置读取 excel 文件的特定图纸的方法。

  • 通过传递您要打开的 excel 文件的完整文件路径来创建File类的对象 - File file = new File(filePath+"\\"+fileName);
  • 下一步是创建一个FileInputStream对象,以获取 excel 文件的输入字节 - FileInputStream inputStream = new FileInputStream(file);
  • 创建一个工作簿对象 - Workbook myWorkbook = null;
  • Excel 文件在大多数情况下可以具有两个扩展名。 “.xls”或“.xlsx”。 通过使用子字符串方法拆分文件名来找到扩展名,并相应地创建Workbook对象。
  1. //indexOf gives the index of . in the file name
  2. //substring method splits the string starting from index of . to the end
  3. String fileExtensionName = fileName.substring(fileName.indexOf("."));
  4. //Check condition if the file is xlsx file
  5. if(fileExtensionName.equals(".xlsx")){
  6. //If it is xlsx file then create object of XSSFWorkbook class
  7. myWorkbook = new XSSFWorkbook(inputStream);
  8. }
  9. //Check condition if the file is xls file
  10. else if(fileExtensionName.equals(".xls")){
  11. //If it is xls file then create object of HSSFWorkbook class
  12. myWorkbook = new HSSFWorkbook(inputStream);
  13. }
  • 使用传递的确切工作表名称,可以读取特定工作表 - Sheet mySheet = myWorkbook.getSheet(sheetName);

现在,使用行和列很容易,它们的交点将为我们提供我们希望读取的单元格内容。

现在让我们来看一下实现到目前为止讨论的全部功能的代码,

ExcelOperationsUsingPOI.java

  1. import java.io.File;
  2. import java.io.FileInputStream;
  3. import java.io.IOException;
  4. import org.apache.poi.hssf.usermodel.HSSFWorkbook;
  5. import org.apache.poi.ss.usermodel.Row;
  6. import org.apache.poi.ss.usermodel.Sheet;
  7. import org.apache.poi.ss.usermodel.Workbook;
  8. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
  9. public class ExcelOperationsUsingPOI {
  10. public static void readExcel(String filePath,String fileName,String sheetName) throws IOException{
  11. //Create a object of File class to open xlsx file
  12. File file = new File(filePath+"\\"+fileName);
  13. //Create an object of FileInputStream class to read excel file
  14. FileInputStream inputStream = new FileInputStream(file);
  15. Workbook myWorkbook = null;
  16. //Find the file extension by spliting file name in substring and getting only extension name
  17. //indexOf gives the index of . in the file name
  18. //substring method splits the string starting from index of . to the end
  19. String fileExtensionName = fileName.substring(fileName.indexOf("."));
  20. //Check condition if the file is xlsx file
  21. if(fileExtensionName.equals(".xlsx")){
  22. //If it is xlsx file then create object of XSSFWorkbook class
  23. myWorkbook = new XSSFWorkbook(inputStream);
  24. }
  25. //Check condition if the file is xls file
  26. else if(fileExtensionName.equals(".xls")){
  27. //If it is xls file then create object of HSSFWorkbook class
  28. myWorkbook = new HSSFWorkbook(inputStream);
  29. }
  30. //Read sheet inside the workbook by its name
  31. Sheet mySheet = myWorkbook.getSheet(sheetName);
  32. //Find number of rows in excel file
  33. int rowCount = mySheet.getLastRowNum()- mySheet.getFirstRowNum();
  34. //Create a loop over all the rows of excel file to read it
  35. for (int i = 0; i < rowCount+1; i++) {
  36. Row row = mySheet.getRow(i);
  37. //Create a loop to print cell values in a row
  38. for (int j = 0; j < row.getLastCellNum(); j++) {
  39. //Print excel data in console
  40. System.out.print(row.getCell(j).getStringCellValue()+"|| ");
  41. }
  42. System.out.println();
  43. }
  44. }
  45. }

ReadExcelData.java

用于调用readExcel方法并传递必需的参数。

  1. import java.io.IOException;
  2. import com.blog.utility.ExcelOperationsUsingPOI;
  3. public class ReadExcelData {
  4. public static void main(String[] args) {
  5. try {
  6. ExcelOperationsUsingPOI.readExcel("E:\\Selenium", "ReadUsingPOI.xlsx", "Demographics");
  7. } catch (IOException e) {
  8. e.printStackTrace();
  9. }
  10. }
  11. }

注释使代码不言自明。 所考虑的 Excel 工作表中的数据如下所示,

Excel Sheet

使用我们的代码访问此信息将按预期方式打印出所有用管道分隔的值,以便将其控制台。

excel console output

如果您想检索代码段,请在评论部分留言,

  1. 给定条目的从零开始的行和列索引
  2. 使用给定的从零开始的行和列索引的值
  3. 基于给定条目的列表中的所有行值
  4. 基于给定条目的列表中的所有列值

试用这些功能,让我知道您是否遇到颠簸。

祝你今天愉快!