如何使用java apache poi遍历Excel工作表中特定列的值以获取值的索引

时间:2018-09-11 10:32:57

标签: java excel apache-poi

我还是Java的新手,只想遍历excel列。

Excel工作表:

enter image description here

我想在HashMap或Array中使用,以便以后可以将这些日期与另一列进行比较。

我的代码给了我一个字符串,如屏幕截图所示:

enter image description here

如何将此字符串更改为另一个数据结构以访问值的“索引”。类似于 dates.get(0)->因此,2018年7月1日。我稍后会更改时间格式。

代码部分:

XSSFWorkbook workbook = new XSSFWorkbook(fsIP);

XSSFSheet sheet = workbook.getSheetAt(0);

for (int rowIndex = 1; rowIndex <= sheet.getLastRowNum(); rowIndex++) {
  Row row = sheet.getRow(rowIndex);
  if (row != null) {
    Cell cell = row.getCell(0); // getColumn(0)
    if (cell != null) {

      System.out.print(cell);

    }
  }
}

您想进一步了解我什么?

我会很感谢每一个帮助!

0 个答案:

没有答案