标签:version 遍历 microsoft 工作表 point system ring xls offic
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.14</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.14</version>
</dependency>
//遍历行对象获取单元格对象
for (Cell cell : row) {
//获得单元格中的值
String value = cell.getStringCellValue();
System.out.println(value);
}
}
workbook.close();
标签:version 遍历 microsoft 工作表 point system ring xls offic
原文地址:https://www.cnblogs.com/znzuinb/p/11837065.html