帮忙生成java poi 前端导出excel代码
时间: 2023-08-10 12:07:41 浏览: 159
当然,我可以帮你生成一段Java代码来使用POI导出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 ExcelExporter {
public static void exportDataToExcel() {
// 创建工作簿
Workbook workbook = new XSSFWorkbook();
// 创建工作表
Sheet sheet = workbook.createSheet("Sheet1");
// 创建行对象
Row row = sheet.createRow(0);
// 创建单元格样式
CellStyle headerCellStyle = workbook.createCellStyle();
headerCellStyle.setFillForegroundColor(IndexedColors.GREY_25_PERCENT.getIndex());
headerCellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
// 创建标题行
Cell cell = row.createCell(0);
cell.setCellValue("姓名");
cell.setCellStyle(headerCellStyle);
cell = row.createCell(1);
cell.setCellValue("年龄");
cell.setCellStyle(headerCellStyle);
// 写入数据行
row = sheet.createRow(1);
row.createCell(0).setCellValue("张三");
row.createCell(1).setCellValue(25);
row = sheet.createRow(2);
row.createCell(0).setCellValue("李四");
row.createCell(1).setCellValue(30);
// 调整列宽
sheet.autoSizeColumn(0);
sheet.autoSizeColumn(1);
// 保存Excel文件
try {
FileOutputStream outputStream = new FileOutputStream("output.xlsx");
workbook.write(outputStream);
workbook.close();
outputStream.close();
System.out.println("Excel导出成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
exportDataToExcel();
}
}
```
以上代码演示了如何使用POI库创建一个Excel文件,并将数据写入到工作表中。你可以根据自己的需求进行修改和扩展。记得在运行代码之前,确保已经将POI库添加到你的项目中。运行代码后,将会在项目目录下生成一个名为"output.xlsx"的Excel文件,其中包含导出的数据。
希望这段代码对你有所帮助!如果有任何问题,请随时提问。
阅读全文