你好,
public static String[][] excelRead() throws Exception{
FileInputStream fis=null;
HSSFWorkbook wb=null;
File excel=new File("C:\\MyEclipseWorkspace\\SeleniumWD\\Commodity1.xlsx");
fis=new FileInputStream(excel);
wb=new HSSFWorkbook(fis);
HSSFSheet ws=wb.getSheet("com");
int rowCount=ws.getLastRowNum()+1;
int colCount=ws.getRow(0).getLastCellNum();
String[][] data=new String[rowCount][colCount];
for(int i=0;i<rowCount;i++){
HSSFRow row=ws.getRow(i);
for(int j=0;j<colCount;j++){
HSSFCell cell=row.getCell(j);
String value= cellToString(cell);
data[i][j]=value;
System.out.println("Value is " +value);
}
}
return data;
}
我正在使用 selenium Eclipse 并且必须执行数据驱动测试。我在下面写了一个代码来导入一个excel表数据。下面的方法这样做,现在因为我正在执行这个方法,它显示Source not found。我无法找到解决方案。我已经在库中包含 poi-3.9.jar 文件。请协助我解决这个问题。提前致谢,