我正在编写一个从excel(.xls)读取数据的函数,然后将其添加到HashMap。

它以前可以工作,但是现在我得到了错误。

我知道为什么会引发错误:由于要读取数据的表(Htest)是空的。

我检查我的excel,有正确名称为“ Htest”的表。

我也检查工作簿中的工作表数。它返回工作簿具有正确的工作表数

我查看另一张纸:它有效。

它只会为我正在处理的工作表引发错误...

我不知道为什么工作表中有该工作表,但是代码返回null?
我错过了什么吗?
有人有同样的问题吗?还是可以给我一个使用它的提示?

谢谢。

错误是:

Method arguments: org.testng.TestRunner@2f6d9d1c, "/enigma"
java.lang.NullPointerException

com.validant.enigma3.common.UIMap.readControls(UIMap.java:133)
 com.validant.enigma3.common.UIMap.<init>(UIMap.java:32)
 com.validant.enigma3.common.TestBase.beforeSuite(TestBase.java:24)
 sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 java.lang.reflect.Method.invoke(Method.java:606)
 org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:84)
 org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:564)
 org.testng.internal.Invoker.invokeConfigurations(Invoker.java:213)
 org.testng.internal.Invoker.invokeConfigurations(Invoker.java:138)
 org.testng.SuiteRunner.privateRun(SuiteRunner.java:277)
 org.testng.SuiteRunner.run(SuiteRunner.java:240)
 org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
 org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
 org.testng.TestNG.runSuitesSequentially(TestNG.java:1224)
 org.testng.TestNG.runSuitesLocally(TestNG.java:1149)
 org.testng.TestNG.run(TestNG.java:1057)
 org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:74)
 org.apache.maven.surefire.testng.TestNGXmlTestSuite.execute(TestNGXmlTestSuite.java:92)
 org.apache.maven.surefire.Surefire.run(Surefire.java:180)
 sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 java.lang.reflect.Method.invoke(Method.java:606)
 org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350)
 org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021)


该代码是

private HashMap<String, MappingObj> readControls(String filepath, String sheetname)
            throws IOException {

        HashMap<String, MappingObj> controllist = new HashMap<String, MappingObj>();

        //System.out.println("FILE PATH = " + filepath);
        //System.out.println("SHEET NAME = " + sheetname);
        FileInputStream file = new FileInputStream(filepath);
        System.out.println(file.toString());

        //Get the workbook instance for XLS file
        HSSFWorkbook myWorkBook = new HSSFWorkbook(file);

        //System.out.println("NUMBER of SHEET= "+myWorkBook.getNumberOfSheets());

        HSSFSheet mySheet= myWorkBook.getSheet(sheetname);


        if (myWorkBook.getSheet(sheetname)==null)
            System.out.println("null");


        Iterator<Row> rowIter = mySheet.rowIterator();
        rowIter.next();

        String[] arow = new String[3];

        while (rowIter.hasNext()) {
            HSSFRow row = (HSSFRow) rowIter.next();
            Iterator<Cell> cells = row.cellIterator();

            int i = 0;

            // Check data from current cell, there is data on next cell or
            // not?
            while (cells.hasNext()) {

                HSSFCell cell = (HSSFCell) cells.next();
                arow[i] = cell.getStringCellValue().trim();
                i++;
            }

            MappingObj mapObj = new MappingObj();

            mapObj.setCodeName(arow[0]);
            mapObj.setSelector(arow[1]);
            mapObj.setPath(arow[2]);

            controllist.put(arow[0], mapObj);
            file.close();
        }

        return controllist;
    }


擅长的是:
我在Excel中有5张订单:
登录FileUpload SimpleTasks Htest参考

所有工作表都具有相同的数据模式(共有3列:控件名称,选择器,路径)
每列只有不同的数据。

工作表原因错误为Htest,其数据为

控件名称选择器路径

test1 cssSelector test2

最佳答案

您在评论中说过,提供NPE的代码行是:

Iterator<Row> rowIter = mySheet.rowIterator();


您的问题是您没有检查尝试获取的工作表是否确实存在。如果您尝试获取名称无效的工作表,则会返回null。从Workbook JavaDocs


  返回:具有提供名称的工作表;如果不存在,则返回null


因此,您的代码应类似于:

HSSFSheet mySheet= myWorkBook.getSheet(sheetname);
if (mySheet == null) {
   throw new IllegalArgumentException("No sheet exists with name " + sheetName);
}


或者,从您的代码那里返回null,然后在调用代码中进行检查(而不是捕获异常)。

如果不确定您的工作簿真正具有哪些图纸(在奇数情况下可能与您想的不一样),请尝试:

for (int sn=0; sn < myWorkBook.getNumberOfSheets(); sn++) {
    System.out.println("Sheet " + sn + " is called " + myWorkBook.getSheetName(sn));
}

10-06 08:34