怎么使用poi读取excel
时间: 2023-09-24 20:12:03 浏览: 96
利用poi读取excel
你可以使用 Apache POI 库来读取 Excel 文件。以下是一个简单的示例,展示如何使用 POI 读取 Excel 中的数据:
```java
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ExcelReader {
public static void main(String[] args) {
try {
FileInputStream file = new FileInputStream("path/to/your/excel/file.xlsx");
Workbook workbook = new XSSFWorkbook(file);
Sheet sheet = workbook.getSheetAt(0); // 获取第一个工作表
for (Row row : sheet) {
for (Cell cell : row) {
switch (cell.getCellType()) {
case STRING:
System.out.print(cell.getStringCellValue() + "\t");
break;
case NUMERIC:
System.out.print(cell.getNumericCellValue() + "\t");
break;
case BOOLEAN:
System.out.print(cell.getBooleanCellValue() + "\t");
break;
default:
System.out.print("\t");
}
}
System.out.println();
}
workbook.close();
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
在上面的示例中,你需要将 `path/to/your/excel/file.xlsx` 替换为你实际的 Excel 文件路径。该代码打开 Excel 文件并读取第一个工作表中的数据,然后将数据打印到控制台。
请注意,你需要将 Apache POI 库添加到项目依赖中,具体方式取决于你使用的构建工具(如 Maven 或 Gradle)。
希望这对你有所帮助!如果你有任何其他问题,请随时提问。
阅读全文