读取多个Excel表格

发布于 2024-11-08 06:10:38 字数 727 浏览 5 评论 0原文

我正在尝试使用 foo 循环读取电子表格的表格。我想知道这是正确的阅读方式,特别是使用 Sheet Propety [在代码中突出显示]:

Cell[][] newcell=new Cell[200][200];   
int newsheet = workbook1.getNumberOfSheets();
for (int q=1;q < newsheet;q++)    
{
    for(int p=0;p < sheet(q).getColumns();p++)
    {
         for(int p1=0;p1<sheet(q).getRows();p1++)
                       /*^^^^^^^^^*/
         {
               newcell[p][p1] = sheet(q).getCell(p, p1);
                              /*^^^^^^^^^*/
               if(newcell[p][p1].equals(saved[j]))
               {
                    System.out.print( newcell[p][0]);
                }
          }
     }   
}

我可以使用sheet() 的属性作为sheet(q) 因为它抛出NullPointerException 吗?

I am trying to read the sheets of a spread sheet uisng a foor loop. I wanted to know is this the right way of reading especially the use of Sheet Propety [highlighted in the code] :

Cell[][] newcell=new Cell[200][200];   
int newsheet = workbook1.getNumberOfSheets();
for (int q=1;q < newsheet;q++)    
{
    for(int p=0;p < sheet(q).getColumns();p++)
    {
         for(int p1=0;p1<sheet(q).getRows();p1++)
                       /*^^^^^^^^^*/
         {
               newcell[p][p1] = sheet(q).getCell(p, p1);
                              /*^^^^^^^^^*/
               if(newcell[p][p1].equals(saved[j]))
               {
                    System.out.print( newcell[p][0]);
                }
          }
     }   
}

Can I use the property of sheet() as sheet(q) because its throwing NullPointerException?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

战皆罪 2024-11-15 06:10:38

处理 POI 中所有单元格的常用风格是:

for(int sheetNum=0; sheetNum < wb.getNumberOfSheets(); sheetNum++) {
    Sheet sheet = wb.getSheetAt(sheetNum);
    for (Row row : sheet) {
        for (Cell cell : row) {
            // Do something here
        }
    }
}

也许将您的代码切换为更像这样的代码?

The usual style for working with all the cells in POI is:

for(int sheetNum=0; sheetNum < wb.getNumberOfSheets(); sheetNum++) {
    Sheet sheet = wb.getSheetAt(sheetNum);
    for (Row row : sheet) {
        for (Cell cell : row) {
            // Do something here
        }
    }
}

Maybe switch your code to something more like that?

国粹 2024-11-15 06:10:38

使用jxlJExcelAPI),这应该有效:

for (Sheet sheet:workbook1.getSheets()) {  // getSheet() returns a Sheet[]
  int numCols = sheet.getColumns();        // getColumns() returns an int
  for(for int i = 0; i <= numCols; i++) {
     Cell[] column = sheet.getColumn(i);
     for(Cell cell:column) {               // column is a Cell[]
        if(cell.equals(saved[j])) {
           System.out.print(cell);
        }
     }
  }   
}

With jxl (JExcelAPI), this should work:

for (Sheet sheet:workbook1.getSheets()) {  // getSheet() returns a Sheet[]
  int numCols = sheet.getColumns();        // getColumns() returns an int
  for(for int i = 0; i <= numCols; i++) {
     Cell[] column = sheet.getColumn(i);
     for(Cell cell:column) {               // column is a Cell[]
        if(cell.equals(saved[j])) {
           System.out.print(cell);
        }
     }
  }   
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文