getColumnIndex()HSSFCell中的GIVING错误

时间:2014-08-23 11:15:00

标签: java excel poi-hssf

我正致力于使用HSSFCell获取excel Sheet的列索引。这是代码

                     if(cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) 
                {
                    int index =  cell.getColumnIndex();

                    System.out.println(" The rowvalue is Numeric so Moving ahead");
                    String str = String.valueOf(cell.getNumericCellValue());
                    System.out.println(" String ---->"+str);

                    list1.add(str);

                }.

错误存在于行getColoumnIndex上。 Iam添加了jakarta.poi.jar。 该错误表示HSSFCell不存在方法getColoumnIndex。请7 rg

0 个答案:

没有答案