HSSF 是Horrible SpreadSheet Format的缩写,也即“讨厌的电子表格格式”。 也许HSSF的名字有点滑稽,就本质而言它是一个非常严肃、正规的API。通过HSSF,你可以用纯Java代码来读取、写入、修改Excel文件。

1 创建对象

 HSSFWorkbook workbook = new HSSFWorkbook();

2 样式

2.1 基础样式

//创建样式
HSSFCellStyle cellStyle = workbook.createCellStyle();
//水平居中
cellStyle.setAlignment(HorizontalAlignment.CENTER);
//垂直居中
cellStyle.setVerticalAlignment(VerticalAlignment.CENTER);
//自动换行
cellStyle.setWrapText(true);
//设置字体
HSSFFont cellFont = workbook.createFont();
cellFont.setFontName("宋体");
cellStyle.setFont(cellFont);

2.2 背景颜色

//创建背景颜色颜色样式
HSSFCellStyle colorStyle = workbook.createCellStyle();
colorStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
//随便设置一个颜色
colorStyle.setFillForegroundColor(IndexedColors.LIGHT_TURQUOISE.getIndex());
//自定义填充颜色 替换刚刚设置的颜色
HSSFPalette customPalette = workbook.getCustomPalette();
customPalette.setColorAtIndex(IndexedColors.LIGHT_TURQUOISE.getIndex(), (byte) 255,(byte) 244, (byte) 144);
colorStyle.setAlignment(HorizontalAlignment.CENTER);
colorStyle.setVerticalAlignment(VerticalAlignment.CENTER);
//设置背景会去除边框,因此需要重新添加
colorStyle.setBorderBottom(BorderStyle.THIN);
colorStyle.setBorderLeft(BorderStyle.THIN);
colorStyle.setBorderTop(BorderStyle.THIN);
colorStyle.setBorderRight(BorderStyle.THIN);
//设置边框颜色
colorStyle.setBottomBorderColor(IndexedColors.CORAL.getIndex());
colorStyle.setTopBorderColor(IndexedColors.CORAL.getIndex());
colorStyle.setLeftBorderColor(IndexedColors.CORAL.getIndex());
colorStyle.setRightBorderColor(IndexedColors.CORAL.getIndex());
//创建边框颜色,灰色
HSSFPalette customPalette2 = workbook.getCustomPalette();
customPalette2.setColorAtIndex(IndexedColors.CORAL.getIndex(), (byte) 208,(byte) 214, (byte) 228);
//ps:如果需要设置合并单元格(在下面介绍)的背景颜色,请先创建好单独的单元格并设置背景,最后进行合并操作,否则无法设置背景颜色

2.3 文字颜色样式

HSSFCellStyle redFont = workbook.createCellStyle();
//设置居中
redFont.setVerticalAlignment(VerticalAlignment.CENTER);
HSSFFont font = workbook.createFont();
//设置字体大小
font.setFontHeightInPoints((short)12);
//设置字体
font.setFontName("宋体");
//加粗
font.setBold(true); font.setColor(Font.COLOR_RED);
redFont.setFont(font);
redFont.setFillBackgroundColor(Font.COLOR_NORMAL);
redFont.setFont(font);
redFont.setWrapText(true);

3 创建单元格并输入数据

//创建个空白的sheet,设置默认的列宽行高
HSSFSheet sheet = workbook.createSheet("我是sheet名");
sheet.setDefaultColumnWidth((short)16);
sheet.setDefaultRowHeight((short)450); //创建第一行
HSSFRow row = sheet.createRow(0);
//可以单独设置改行的高度
row.setHeightInPoints(52); //设置excel内容
//合并表格,起始行,结束行,起始列,结束列
sheet.addMergedRegion(new CellRangeAddress(0,0,0,7)); //创建标题,创建第一格,因为合并了,直接装填第一格即可
HSSFCell cell = row.createCell(0);
cell.setCellValue("我是标题");
cell.setCellStyle(cellStyle); //创建新行,设置每个单元格内容
row = sheet.createRow(1);
//获取第0格
cell = row.createCell(0);
//设置内容
cell.setCellValue("单元格1");
//设置单元格格式
cell.setCellStyle(cellStyle); cell = row.createCell(1);
cell.setCellValue("单元格2");
cell.setCellStyle(cellStyle); cell = row.createCell(2);
cell.setCellValue("单元格3");
cell.setCellStyle(cellStyle); //冻结单元格,要冻结的列数,要冻结的行数,可以冻结表头,方便用户观看
sheet.createFreezePane(0,2); //ps:在excel中换行符为\r\n,可创建多行内容

4 为单元格设置下拉框

DataValidationHelper dataValidationHelper = sheet.getDataValidationHelper();
//下拉框的范围,起始行,结束行,起始列,结束列
CellRangeAddressList cellRangeAddressList = new CellRangeAddressList(3,400,3,3);
//设置选项内容
DataValidationConstraint explicitListConstraint = dataValidationHelper.createExplicitListConstraint(new String[]{"重要","普通"});
//装填
DataValidation validation = dataValidationHelper.createValidation(explicitListConstraint, cellRangeAddressList);
sheet.addValidationData(validation); CellRangeAddressList cellRangeAddressList2 = new CellRangeAddressList(3,400,4,4);
DataValidationConstraint explicitListConstraint2 = dataValidationHelper.createExplicitListConstraint(new String[]{"111","222","333"});
DataValidation validation2 = dataValidationHelper.createValidation(explicitListConstraint2, cellRangeAddressList2);
sheet.addValidationData(validation2);

5 为单元格设置时间格式

HSSFCellStyle dateStyle = workbook.createCellStyle();
HSSFDataFormat dataFormat = workbook.createDataFormat();
dateStyle.setDataFormat(dataFormat.getFormat("yyyy-mm-dd"));
//遍历设置格式
for (int i = 3; i <400; i++) {
row = sheet.createRow(i);
for (int j = 9; j <=11; j++) {
cell = row.createCell(j);
cell.setCellStyle(dateStyle);
}
} //ps:这样设置格式后在使用该模板进行excel导入操作时,会被算存在一行,请先判断不为空再操作

6 生成后返回给前端

6.1 后端发送

HSSFWorkbook workbook = testService.getExportXls();
OutputStream osOut = null;
try{
osOut = response.getOutputStream();
response.setHeader("Content-Disposition", "attachment;");
response.setContentType("application/vnd.ms-excel;charset=utf-8");
response.setCharacterEncoding("utf-8");
workbook.write(osOut);
osOut.flush();
}catch (IOException e){
e.printStackTrace();
}finally {
try {
if(osOut != null){
osOut.close();
}
workbook.close();
}catch (IOException e){
e.printStackTrace();
}
}

6.2 前端接收

//绑定某个按钮
downloadXls(){
//使用什么请求看自己需要
request({
url: `/后端的请求路径`,
method: "get",
responseType: 'blob'
}).then(res=>{
let url = window.URL.createObjectURL(new Blob([res], { type: 'application/vnd.ms-excel' }))
let link = document.createElement('a')
link.style.display = 'none'
link.href = url
link.setAttribute('download', '文件名称.xls')
document.body.appendChild(link)
link.click()
document.body.removeChild(link) //下载完成移除元素
window.URL.revokeObjectURL(url) //释放掉blob对象
})
}

Java使用HSSFWorkbook生成Excel的更多相关文章

  1. 【java】:生成excel

    //生成报表公用方法 //excelName: 生成的文件名 //list:时间/日期/描述 //listSelectFiled:  标题 //showContent :  文件内容bean //生成 ...

  2. Java 利用poi生成excel表格

    所需jar包,如下所示 写一个excel工具类 ExcelUtils .java import java.lang.reflect.Field; import java.util.Iterator; ...

  3. Java 利用 poi 生成 Excel文件的通用例子

    在用java 写数据库应用的时候, 通常会生成各种报表,而这些报表可能会被导出为各种格式的文件,比如Excel文档,pdf 文档等等. 今天先做了一个生成Excel 文档的例子,主要解决以下问题: 生 ...

  4. java利用poi生成excel文件后下载本地

    1.该功能需要poi的jar包,链接: http://pan.baidu.com/s/1migAtNq 密码: 38fx. 2.首先新建一个实体类,用以存放单个数据 public class Test ...

  5. Apache POI使用指南(HSSFWorkbook生成excel)

    说 明: 官网:http://poi.apache.org/ 由于poi的功能多样,可以生成ppt.word.excel.......,本文就以生成excel为例进行说明,相信聪明的你一定能举一反三 ...

  6. java使用poi生成excel

    使用poi生成excel通常包含一下几个步骤 创建一个工作簿 创建一个sheet 创建一个Row对象 创建一个cell对象(1个row+1个cell构成一个单元格) 设置单元格内容 设置单元格样式. ...

  7. Java利用POI生成Excel强制换行

    前一段时间在做一个学校排课系统时,有一个地方需要利用把课程表生成excel汇出给客户,由于之前用excel都只是简单的应用,在单元格里都是用自动换行,而这次可能需要用到手动强制换行. 于是我在网上找了 ...

  8. java操作poi生成excel.xlsx(设置下拉框)下载本地和前端下载

    需求:导入excel表格,如果excel有错误,将错误的地方标红,在把数据以excel的形式写出,供用户下载解决方案:1.以实体类的方式接收excel并解析(创建两个集合一个接收正常的数据一个接收错误 ...

  9. java将HSSFWorkbook生成的excel压缩到zip中

    思路:1.写入输入流中. 2.将输入流加到ZipOutputStream压缩流中 List<DocumentModel> list = null; try { list = documen ...

  10. Java使用poi生成Excel,生成两种表格下拉框

    想要使用POI操作以xsl结尾的Excel,首先要下载poi相关的jar包,用到的jar有: poi-3.9.jar poi-ooxml-3.9.jar poi-ooxml-schemas-3.9.j ...

随机推荐

  1. Python 自动化中三种等待时间的详解

    1.强制等待 强制等待是最简单的一种等待方式,强制让浏览器等待X秒,不管当前操作是否完成,是否可以进行下一步操作,都必须等X秒的时间. 使用方法:time.sleep(X) .在python中是基于t ...

  2. 下载接口时出现:Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at 'D:\python\demo\venv\Scripts\...的错误

    下载接口时出现:Try to run this command from the system terminal. Make sure that you use the correct version ...

  3. sudo:Operation not permitted事件

    转载请注明来源:https://www.cnblogs.com/Sherlock-L/p/14933949.html 前言 事情是这样的,在风和日丽的一天,我如往常一样在服务器上敲下了sudo xxx ...

  4. IO流(1)

    IO流(1) 目录 IO流(1) 文件 创建文件 获取文件信息 目录的操作和文件删除 文件 文件流 文件在程序中以流的形式来操作 输入流:数据从数据源(文件)到程序(内存)的路径 输出流:数据从程序( ...

  5. mysql中char和varchar的区别

    char的长度是不可变的,是定长的, varchar的长度是可变的,不定长的: 但是char的存取速度比varchar快,因为其长度固定,方便存储和查找. char空间换时间,varchar时间换空间 ...

  6. NGINX websocket 配制

    http { map $http_upgrade $connection_upgrade {          default upgrade;          '' close; } upstre ...

  7. sudo apt-get install libncurses5-dev sudo apt-get install u-boot-tools

    sudo apt-get install libncurses5-dev sudo apt-get install u-boot-tools

  8. HANA 2022 ME21N \ME31K 客制字段

    问题:客制字段维护不上去 解决方案:抬头字段 打补丁 note 3275982 - Data loss observed in custom fields when working in the tr ...

  9. paddle 错误(ValueError: all input arrays must have the same shape)

    参考:voc数据集执行eval.py命令报错 · Issue #3456 · PaddlePaddle/PaddleDetection (github.com) 配置文件加这两行: EvalReade ...

  10. noi 45 金币

    noi 45 金币 1.描述 国王将金币作为工资,发放给忠诚的骑士.第一天,骑士收到一枚金币:之后两天(第二天和第三天)里,每天收到两枚金币:之后三天(第四.五.六天)里,每天收到三枚金币:之后四天( ...