easypoi和easyPoi操作讲解文档gitee地址:excel操作工具类: poi、easypoi、easyexcel操作excel - Gitee.com
常用场景
1、将用户信息导出为excel表格(导出数据...)
2、将Excel表中的信息录入到网站数据库(习题上传)大大减轻网站录入量!
开发中经常会设计到excel的处理,如导出Excel,导入Excel到数据库中!
操作Excel目前比较流行的就是Apache POI 和阿里巴巴的easyExcel!
Apache POI
Apache POI 官网:Apache POI - the Java API for Microsoft Documents 会比较麻烦!
导入依赖
<!--xls(03)-->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.9</version>
</dependency>
<!--xls(07)-->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.9</version>
</dependency>
<!--日期格式化工具-->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.10.1</version>
</dependency>
写操作
03版本
public static void writeExcel03() throws IOException {
//1.创建一个工作簿
Workbook workbook = new HSSFWorkbook();
//2.创建一个工作表
Sheet sheet = workbook.createSheet("panghl-test-统计表");
//3.创建行
Row row1 = sheet.createRow(0);
//4.创建单元格
Cell cell11 = row1.createCell(0);
cell11.setCellValue("今日的测试次数");
Cell cell112 = row1.createCell(1);
cell112.setCellValue("测试时间");
Row row2 = sheet.createRow(1);
Cell cell21 = row2.createCell(0);
cell21.setCellValue(1000);
Cell cell22 = row2.createCell(1);
String date = new DateTime().toString("yyyy-MM-dd HH:mm:ss");
cell22.setCellValue(date);
//生成一张表 (IO流) 03版本就是使用xls结尾!
FileOutputStream fileOutputStream = new FileOutputStream("03.xls");
//输出
workbook.write(fileOutputStream);
//关闭流
fileOutputStream.close();
System.out.println("文件生成完成!");
}
07版本
public static void writeExcel07() throws IOException {
//1.创建一个工作簿
Workbook workbook = new XSSFWorkbook();
//2.创建一个工作表
Sheet sheet = workbook.createSheet("panghl-test-统计表");
//3.创建行
Row row1 = sheet.createRow(0);
//4.创建单元格
Cell cell11 = row1.createCell(0);
cell11.setCellValue("今日的测试次数");
Cell cell112 = row1.createCell(1);
cell112.setCellValue("测试时间");
Row row2 = sheet.createRow(1);
Cell cell21 = row2.createCell(0);
cell21.setCellValue(1000);
Cell cell22 = row2.createCell(1);
String date = new DateTime().toString("yyyy-MM-dd HH:mm:ss");
cell22.setCellValue(date);
//生成一张表 (IO流) 03版本就是使用xls结尾!
FileOutputStream fileOutputStream = new FileOutputStream("07.xlsx");
//输出
workbook.write(fileOutputStream);
//关闭流
fileOutputStream.close();
System.out.println("文件生成完成!");
}
注意对象的一个区别,文件后缀!!!
大文件写HSSF
缺点:最多只能处理65536行,否则会抛出异常
java.lang.IllegalArgumentException: Invalid row number(65536) outside allowable range(0..65535)
优点:过程中写入缓存,不操作磁盘,最后一次性写入磁盘,速度快
public static void write03BigData() throws IOException {
//时间
long begin = System.currentTimeMillis();
//创建一个工作簿
Workbook workbook = new HSSFWorkbook();
//创建表
Sheet sheet = workbook.createSheet();
//写入数据
for (int rowNum = 0; rowNum < 65536; rowNum++) {
Row row = sheet.createRow(rowNum);
for (int cellNum = 0; cellNum < 10; cellNum++) {
Cell cell = row.createCell(cellNum);
cell.setCellValue(cellNum);
}
}
System.out.println("over...");
FileOutputStream fileOutputStream = new FileOutputStream("03BigData.xls");
workbook.write(fileOutputStream);
long end = System.currentTimeMillis();
System.out.println("执行耗费时间:"+(end-begin)/1000+"s");
}
大文件写XSSF
缺点: 写数据速度非常慢,非常消耗内存,也会发生内存溢出,如100万条
优点:可以写较大的数据量,如20万条
public static void write07BigData() throws IOException {
//时间
long begin = System.currentTimeMillis();
//创建一个工作簿
Workbook workbook = new XSSFWorkbook();
//创建表
Sheet sheet = workbook.createSheet();
//写入数据
for (int rowNum = 0; rowNum < 65536; rowNum++) {
Row row = sheet.createRow(rowNum);
for (int cellNum = 0; cellNum < 10; cellNum++) {
Cell cell = row.createCell(cellNum);
cell.setCellValue(cellNum);
}
}
System.out.println("over...");
FileOutputStream fileOutputStream = new FileOutputStream("07BigData.xlsx");
workbook.write(fileOutputStream);
long end = System.currentTimeMillis();
System.out.println("执行耗费时间:"+(end-begin)/1000+"s");
}
大文件写SXSSF
缺点: 可以写非常大的数据量,如100万条甚至更多条,写数据速度快,占用更少的内存
注意:
过程中会产生临时文件,需要清理临时文件
默认由100条记录保存在内存中,如果超过这数量,则最前面的数据被写入临时文件
如果想自定义内存中数据的数量,可以使用 new SXSSFWorkbook(数量)
public static void write07BigDataSXSSF() throws IOException {
//时间
long begin = System.currentTimeMillis();
//创建一个工作簿
Workbook workbook = new SXSSFWorkbook();
//创建表
Sheet sheet = workbook.createSheet();
//写入数据
for (int rowNum = 0; rowNum < 65536; rowNum++) {
Row row = sheet.createRow(rowNum);
for (int cellNum = 0; cellNum < 10; cellNum++) {
Cell cell = row.createCell(cellNum);
cell.setCellValue(cellNum);
}
}
System.out.println("over...");
FileOutputStream fileOutputStream = new FileOutputStream("07BigDataSXSSF.xlsx");
workbook.write(fileOutputStream);
//清除临时文件!
((SXSSFWorkbook)workbook).dispose();
long end = System.currentTimeMillis();
System.out.println("执行耗费时间:"+(end-begin)/1000+"s");
}
SXSSFWorkbook 来至官方的解释:实现"BigGridDemo" 策略的流式XSSFWorkbook版本。这允许写入非常大的文件而不会耗尽内存,因为任何时候只有可配置的行部分被保存在内存中。
请注意,任然可能会消耗大量内存,这些内存基于您正在使用的功能,例如合并区域,注释....仍然只存储在内存中,因此如果广泛使用,可能需要大量内存。
读操作
03版本
public static void read03() throws Exception{
//获取文件流
FileInputStream fileInputStream = new FileInputStream("03.xls");
//1.创建一个工作簿 使用excel能操作的这边他都可以操作!
Workbook workbook = new HSSFWorkbook(fileInputStream);
//2.得到表
Sheet sheet = workbook.getSheetAt(0);
//3.得到行
Row row = sheet.getRow(1);
//4.得到列
Cell cell = row.getCell(0);
//读取值一定要注意类型!!!
//getStringCellValue 字符串类型
// System.out.println(cell.getStringCellValue());
System.out.println(cell.getNumericCellValue());
fileInputStream.close();
}
07版本
public static void read07() throws Exception{
//获取文件流
FileInputStream fileInputStream = new FileInputStream("07.xlsx");
//1.创建一个工作簿 使用excel能操作的这边他都可以操作!
Workbook workbook = new XSSFWorkbook(fileInputStream);
//2.得到表
Sheet sheet = workbook.getSheetAt(0);
//3.得到行
Row row = sheet.getRow(1);
//4.得到列
Cell cell = row.getCell(0);
//读取值一定要注意类型!!!
//getStringCellValue 字符串类型
// System.out.println(cell.getStringCellValue());
System.out.println(cell.getNumericCellValue());
fileInputStream.close();
}
注意获取值的类型即可
读取不同的数据类型
public static void cellType() throws IOException {
//获取文件流
FileInputStream fileInputStream = new FileInputStream("明细表.xlsx");
//1.创建一个工作簿 使用excel能操作的这边他都可以操作!
Workbook workbook = new XSSFWorkbook(fileInputStream);
Sheet sheet = workbook.getSheetAt(0);
//获取标题内容
Row rowTitle = sheet.getRow(0);
if (rowTitle != null) {
int cellCount = rowTitle.getPhysicalNumberOfCells();
for (int cellNum = 0; cellNum < cellCount; cellNum++) {
Cell cell = rowTitle.getCell(cellNum);
if (cell != null) {
int cellType = cell.getCellType();
String stringCellValue = cell.getStringCellValue();
System.out.print(stringCellValue + "|");
}
}
System.out.println();
}
//获取表中的内容
int rowCount = sheet.getPhysicalNumberOfRows();
for (int rowNum = 0; rowNum < rowCount; rowNum++) {
Row rowData = sheet.getRow(rowNum);
if (rowData != null) {
//读取列
int cellCount = rowData.getPhysicalNumberOfCells();
for (int cellNum = 0; cellNum < cellCount; cellNum++) {
System.out.print("[" + rowNum + "-" + cellNum + "]");
Cell cell = rowData.getCell(cellNum);
//匹配列的数据类型
if (cell != null) {
int cellType = cell.getCellType();
String cellValue = "";
switch (cellType) {
case HSSFCell
.CELL_TYPE_STRING: //字符串
cellValue = cell.getStringCellValue();
break;
case HSSFCell
.CELL_TYPE_BOOLEAN: //布尔
cellValue = String.valueOf(cell.getBooleanCellValue());
break;
case HSSFCell
.CELL_TYPE_BLANK: //空
System.out.println("空");
break;
case HSSFCell
.CELL_TYPE_NUMERIC: //数字(日期、普通数字)
if (HSSFDateUtil.isCellDateFormatted(cell)){
System.out.print("日期");
Date date = cell.getDateCellValue();
cellValue=new DateTime(date).toString("yyyy-MM-dd");
}else {
//不是日期格式,防止数字过长!
System.out.print("转换为字符串输出");
cell.setCellType(HSSFCell.CELL_TYPE_STRING);
cellValue = cell.getStringCellValue();
}
break;
case HSSFCell
.CELL_TYPE_ERROR: //错误
System.out.print("数据类型错误");
break;
}
System.out.println(cellValue);
}
}
System.out.println();
}
}
fileInputStream.close();
}
计算公式
public static void formula() throws Exception{
//获取文件流
FileInputStream fileInputStream = new FileInputStream("公式.xlsx");
//1.创建一个工作簿 使用excel能操作的这边他都可以操作!
Workbook workbook = new XSSFWorkbook(fileInputStream);
Sheet sheet = workbook.getSheetAt(0);
Row row = sheet.getRow(4);
Cell cell = row.getCell(0);
//拿到计算公式 eval
XSSFFormulaEvaluator xssfFormulaEvaluator = new XSSFFormulaEvaluator((XSSFWorkbook) workbook);
//输出单元格的内容
int cellType = cell.getCellType();
switch (cellType){
case Cell.CELL_TYPE_FORMULA:
String formula = cell.getCellFormula();
System.out.println(formula);
//计算
CellValue evaluate = xssfFormulaEvaluator.evaluate(cell);
String cellValue = evaluate.formatAsString();
System.out.println(cellValue);
break;
}
}
easyExcel
官方示例:Alibaba Easy Excel - 简单、省内存的Java解析Excel工具 | 首页
github 地址 : GitHub - alibaba/easyexcel: 快速、简单避免OOM的java处理Excel工具
官方文档: EasyExcel · 语雀
EasyExcel是阿里巴巴开源的一个excel处理框架,以使用简单、节省内存著称。
EasyExcel能大大减少占用内存的主要原因是在解析Excel时没有将文件数据一次性全部加载到内存中,而是从磁盘上一行行读取数据,逐个解析。
内存问题:POI = 100w 先加载到内存。。。在写入文件
下图是EasyExcel 和POI在解析Excel的对比图
EasyExcel操作
导入依赖
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>2.2.0-beta2</version>
</dependency>
读
写
详细可参考:easyExcel的使用_程序猿二鍋頭的博客-CSDN博客
固定套路:
1、写入,固定类格式进行写入
2、读取,根据监听器设置的规则进行读取!
excel报表下载接口,可供参考:
@RequestMapping(value = "/exportBusinessReport",method = RequestMethod.GET)
public void exportBusinessReport(HttpServletRequest request, HttpServletResponse response) {
try {
//构建工作簿数据
Workbook workbook = buildWorkbookData(request);
//设置信息头
response.setContentType("application/vnd.ms-excel;charset=utf-8");
response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("运营数据.xlsx", "utf-8"));
//写出文件,关闭流
OutputStream outputStream = response.getOutputStream();
workbook.write(outputStream);
outputStream.flush();
outputStream.close();
workbook.close();
}catch (Exception e){
e.printStackTrace();
}
}