1.先从数据库获取将要导出的数据
2.建立一个表格
XSSFWorkbook workbook = new XSSFWorkbook();
XSSFSheet sheet = workbook.createSheet("测试信息");
3. 设置表格样式(我这里只需要一个冻结首行)
sheet.createFreezePane(10, 1);// 冻结
其中10代表冻结的列数,1代表行数,这里的意思就是冻结第一行的10列
4.设置表头样式,先要创建一个XSSFCellStyle对象
//样式对象
XSSFCellStyle cellStyle = workbook.createCellStyle();
//字体格式对象
XSSFFont font = workbook.createFont();
font.setColor(Font.COLOR_RED);//字体颜色
font.setFontName("方正楷体");//字体
font.setFontHeightInPoints((short) 12);//字体大小
font.setBold(true);//加粗
cellStyle.setAlignment(HorizontalAlignment.CENTER);//居中对齐
//边框
cellStyle.setBorderTop(BorderStyle.THIN);
cellStyle.setBorderBottom(BorderStyle.THIN);
cellStyle.setBorderLeft(BorderStyle.THIN);
cellStyle.setBorderRight(BorderStyle.THIN);
//把设置好的字体样式加载到cellStyle中
cellStyle.setFont(font);
//背景色设置的时候一定要设置填充方式,否则不起作用
cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
//设置背景色用setFillForegroundColor(填充前景)方法,用setFillBackgroundColor(填充背
//景)方法会导致填充色变成全黑
cellStyle.setFillForegroundColor(IndexedColors.TURQUOISE.getIndex());
5.创建表头的数组(因为这里是个人写的一个合并单元格导出,故没有用到注解)
String[] header = {"名称","编码","英文名称","关系1","关系2"};
//创建一行用来存放表头内容
XSSFRow row = sheet.createRow(0);
6.循环把样式都加载到表头上
//header就是表头数组
for (int i = 0; i < header.length; i++) {
sheet.setColumnWidth(i,15*256);
XSSFCell cell = row.createCell(i);
cell.setCellStyle(cellStyle);
cell.setCellValue(array[i]);
}
7. 开始填充表格数据
//firstRow代表是从哪一行开始填充表格
int firstRow = 1;
int link1,link2,max;
//增强for循环遍历从数据库取到的结果
for (Pojo qwa:response3) {
//取出一个对象后先计算对象里的集合的大小,根据最多的进行合并单元格
link1 = qwa.getLink1List!=null?qwa.getLink1List().size():0;
link2 = qwa.getLink2List()!=null?qwa.getLink2List().size():0;
max = link1>link2?link1:link2;
//如果两个集合的大小都为0,那么将max置为1,目的就是为了去除对象里的集合对对象中元素的影响
//如果max是0的情况下,下面的代码就不会执行,哪怕对象中的元素有值
if(max==0)max=1;
for (int j = 0; j < max; j++) {
XSSFRow row1 = sheet.createRow(firstRow+j);//创建行存放对象中的值
if(j==0){
//人工去获取对象中的值,需要和表头一一对应
row1.createCell(0).setCellValue(qwa.getName());
row1.createCell(1).setCellValue(qwa.getCode());
row1.createCell(2).setCellValue(qwa.getEnName());
}
try {
row1.createCell(3).setCellValue(qwa.getLink1List.get(j).getName());
}catch (IndexOutOfBoundsException e){
e.printStackTrace();
}
try {
row1.createCell(4).setCellValue(qwa.getLink2List().get(j).getName());
}catch (IndexOutOfBoundsException e){
e.printStackTrace();
}
}
if(firstRow<firstRow+max-1&&max>1){
// 3 代表一共有几列公共列
for (int j = 0; j < 3; j++) {
//创建合并样式对象,四个参数从前到后分别为:起始行,终止行,起始列,终止列
//切记终止行最后一定要减1
CellRangeAddress cellAddresses = new CellRangeAddress(firstRow,firstRow+max-1,j,j);
//样式加载
sheet.addMergedRegion(cellAddresses);
}//合并单元格
}
//变更firstRow的值,进行下一个对象创建行
firstRow=firstRow+max;
}
8.导出数据
//response是方法带的
//public void export(Pojo request, HttpServletResponse response)
try {
OutputStream output=response.getOutputStream();
response.reset();
//文件名字尽量用英文,中文的话还需要解码什么的,比较麻烦
String filename = "text.xlsx"
response.setHeader( "Content-disposition" , "attachment; filename="+filename );
response.setContentType( "application/msexcel" );
try {
workbook.write(output);
output.close();
}catch (IOException e){
e.printStackTrace();
System.out.println("流关闭异常!");
} finally {
if (output != null) {
try {
output.close();
} catch (IOException e) {
System.out.println("流关闭异常!");
}
}
}
}catch (IOException e){
e.printStackTrace();
9.效果图