package com.cqbb.common.utils.poi;

import org.apache.poi.hssf.usermodel.*;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import org.springframework.http.MediaType;

import javax.servlet.http.HttpServletResponse;
import java.net.URLEncoder;
import java.util.List;

public class ExportSheetUtil {
/**
* 拆解并导出多重Excel
*/
public static void exportManySheetExcel(String fileName, List<ExcelSheet> mysheets, HttpServletResponse response) {
//创建工作薄
HSSFWorkbook wb = new HSSFWorkbook();
//表头样式
HSSFCellStyle style = wb.createCellStyle();
// 垂直
style.setVerticalAlignment(VerticalAlignment.CENTER);
// 水平
style.setAlignment(HorizontalAlignment.CENTER);
//字体样式
HSSFFont fontStyle = wb.createFont();
fontStyle.setFontName("微软雅黑");
fontStyle.setFontHeightInPoints((short) 12);
style.setFont(fontStyle);
for (ExcelSheet excel : mysheets) {
//新建一个sheet
//获取该sheet名称
HSSFSheet sheet = wb.createSheet(excel.getFileName());
//获取sheet的标题名
String[] handers = excel.getHanders();
//第一个sheet的第一行为标题
HSSFRow rowFirst = sheet.createRow(0);
//写标题
for (int i = 0; i < handers.length; i++) {
//获取第一行的每个单元格
HSSFCell cell = rowFirst.createCell(i);
//往单元格里写数据
cell.setCellValue(handers[i]);
//加样式
cell.setCellStyle(style);
//设置每列的列宽
sheet.setColumnWidth(i, 4000);
}
//写数据集
List<String[]> dataset = excel.getDataset();
for (int i = 0; i < dataset.size(); i++) {
//获取该对象
String[] data = dataset.get(i);
//创建数据行
HSSFRow row = sheet.createRow(i + 1);
for (int j = 0; j < data.length; j++) {
//设置对应单元格的值
row.createCell(j).setCellValue(data[j]);
}
}
}

// 下载文件谷歌文件名会乱码,用IE
try {
response.setContentType(MediaType.APPLICATION_OCTET_STREAM_VALUE);
response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName + ".xlsx", "utf-8"));
response.setHeader("Cache-Control", "No-cache");
response.flushBuffer();
wb.write(response.getOutputStream());
wb.close();
} catch (Exception e) {
e.printStackTrace();
}
}

}



package com.cqbb.common.utils.poi;

import java.util.Arrays;
import java.util.List;

public class ExcelSheet {

/*** sheet的名称*/
private String fileName;

/*** sheet里的标题*/
private String[] handers;

/*** sheet里的数据集*/
private List<String[]> dataset;

public ExcelSheet(String fileName, String[] handers, List<String[]> dataset) {
this.fileName = fileName;
this.handers = handers;
this.dataset = dataset;
}

public String getFileName() {
return this.fileName;
}

public String[] getHanders() {
return this.handers;
}

public List<String[]> getDataset() {
return this.dataset;
}

public void setFileName(String fileName) {
this.fileName = fileName;
}

public void setHanders(String[] handers) {
this.handers = handers;
}

public void setDataset(List<String[]> dataset) {
this.dataset = dataset;
}

public boolean equals(Object o) {
if (o == this) {
return true;
} else if (!(o instanceof ExcelSheet)) {
return false;
} else {
ExcelSheet other = (ExcelSheet)o;
if (!other.canEqual(this)) {
return false;
} else {
label39: {
Object this$fileName = this.getFileName();
Object other$fileName = other.getFileName();
if (this$fileName == null) {
if (other$fileName == null) {
break label39;
}
} else if (this$fileName.equals(other$fileName)) {
break label39;
}

return false;
}

if (!Arrays.deepEquals(this.getHanders(), other.getHanders())) {
return false;
} else {
Object this$dataset = this.getDataset();
Object other$dataset = other.getDataset();
if (this$dataset == null) {
if (other$dataset != null) {
return false;
}
} else if (!this$dataset.equals(other$dataset)) {
return false;
}

return true;
}
}
}
}

protected boolean canEqual(Object other) {
return other instanceof ExcelSheet;
}

public int hashCode() {
int result = 1;
Object $fileName = this.getFileName();
result = result * 59 + ($fileName == null ? 43 : $fileName.hashCode());
result = result * 59 + Arrays.deepHashCode(this.getHanders());
Object $dataset = this.getDataset();
result = result * 59 + ($dataset == null ? 43 : $dataset.hashCode());
return result;
}

public String toString() {
return "ExcelSheet(fileName=" + this.getFileName() + ", handers=" + Arrays.deepToString(this.getHanders()) + ", dataset=" + this.getDataset() + ")";
}

}


posted on 2024-07-04 14:05  独醉笑清风  阅读(3)  评论(0编辑  收藏  举报