springboot怎么使用 Apache POI
时间: 2024-01-25 18:01:50 浏览: 95
要在 Spring Boot 中使用 Apache POI,需要在 Maven 或 Gradle 项目中添加以下依赖:
```xml
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.2</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.2</version>
</dependency>
```
然后,您可以使用以下代码示例来创建 Excel 文件:
```java
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.FileOutputStream;
import java.io.IOException;
public class ExcelWriter {
public static void main(String[] args) throws IOException {
Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet("Sheet1");
Row row = sheet.createRow(0);
Cell cell = row.createCell(0);
cell.setCellValue("Hello, World!");
FileOutputStream fileOutputStream = new FileOutputStream("example.xlsx");
workbook.write(fileOutputStream);
fileOutputStream.close();
System.out.println("Excel file successfully created.");
}
}
```
这个示例创建了一个名为 `example.xlsx` 的 Excel 文件,并将字符串“Hello, World!”写入第一个单元格。
阅读全文