以下是一个详细的示例,展示了如何使用SXSSFWorkbook将多个List数据和单个实体DTO导出到多个Sheet页:
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.streaming.SXSSFSheet;
import org.apache.poi.xssf.streaming.SXSSFRow;
import org.apache.poi.xssf.streaming.SXSSFCell;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;
public class ExportToMultipleSheetsExample {
public static void main(String[] args) {
// 创建工作簿
SXSSFWorkbook workbook = new SXSSFWorkbook();
// 添加第一个Sheet页(示例:字符串列表)
List<String> stringData = getListData(); // 获取字符串列表数据
addSheetWithData(workbook, "String Data", stringData);
// 添加第二个Sheet页(示例:整数列表)
List<Integer> integerData = getListData(); // 获取整数列表数据
addSheetWithData(workbook, "Integer Data", integerData);
// 添加第三个Sheet页(示例:单个实体DTO)
EntityDto entityDto = getEntityDto(); // 获取单个实体DTO数据
addSheetWithEntityDto(workbook, "Entity Data", entityDto);
try (FileOutputStream fileOut = new FileOutputStream("output.xlsx")) {
// 将Workbook写入文件
workbook.write(fileOut);
System.out.println("Excel导出完成!");
} catch (IOException e) {
e.printStackTrace();
} finally {
// 关闭工作簿
workbook.dispose();
}
}
private static <T> void addSheetWithData(SXSSFWorkbook workbook, String sheetName, List<T> data) {
// 创建Sheet页
SXSSFSheet sheet = workbook.createSheet(sheetName);
// 添加数据
for (int i = 0; i < data.size(); i++) {
SXSSFRow row = sheet.createRow(i);
SXSSFCell cell = row.createCell(0);
cell.setCellValue(String.valueOf(data.get(i)));
}
}
private static void addSheetWithEntityDto(SXSSFWorkbook workbook, String sheetName, EntityDto entityDto) {
// 创建Sheet页
SXSSFSheet sheet = workbook.createSheet(sheetName);
// 添加表头
SXSSFRow headerRow = sheet.createRow(0);
headerRow.createCell(0).setCellValue("ID");
headerRow.createCell(1).setCellValue("Name");
headerRow.createCell(2).setCellValue("Age");
// 添加数据行
SXSSFRow dataRow = sheet.createRow(1);
dataRow.createCell(0).setCellValue(entityDto.getId());
dataRow.createCell(1).setCellValue(entityDto.getName());
dataRow.createCell(2).setCellValue(entityDto.getAge());
}
private static List<String> getListData() {
// 返回字符串列表数据(示例)
return List.of("Apple", "Banana", "Orange", "Grapes");
}
private static List<Integer> getIntegerListData() {
// 返回整数列表数据(示例)
return List.of(10, 20, 30, 40, 50);
}
private static EntityDto getEntityDto() {
// 返回单个实体DTO数据(示例)
return new EntityDto(1, "John Doe", 25);
}
private static class EntityDto {
private int id;
private String name;
private int age;
public EntityDto(int id, String name, int age) {
this.id = id;
this.name = name;
this.age = age;
}
public int getId() {
return id;
}
public String getName() {
return name;
}文章来源:https://www.toymoban.com/news/detail-671637.html
public int getAge() {
return age;
}
}
}文章来源地址https://www.toymoban.com/news/detail-671637.html
到了这里,关于java中用SXSSFWorkbook把多个list数据和单个实体dto导出到excel如何导出到多个sheet页详细实例?(亲测)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!