使用EasyExcel和POI操作Excel实现文件读和写

使用easyExcel实现文件读写

实现流程

1.导入依赖

2.定义数据模型

3.定义监听器

4.读取或写入数据

5.释放资源

实现

导入依赖

<dependency><groupId>com.alibaba</groupId><artifactId>easyexcel</artifactId><version>3.1.3</version>
</dependency>

定义数据模型

@@ExcelProperty(value = "id" ,index = 0)  列的字段名称和索引

@Data
@AllArgsConstructor
@NoArgsConstructor
public class CategoryExcelVo {@ExcelProperty(value = "id" ,index = 0)private Long id;@ExcelProperty(value = "名称" ,index = 1)private String name;@ExcelProperty(value = "图片url" ,index = 2)private String imageUrl ;@ExcelProperty(value = "上级id" ,index = 3)private Long parentId;@ExcelProperty(value = "状态" ,index = 4)private Integer status;@ExcelProperty(value = "排序" ,index = 5)private Integer orderNum;}

定义监听器

public class ExcelListener<T> extends AnalysisEventListener<T> {private static final int BATCH_COUNT = 100;private List cacheList = ListUtils.newArrayListWithExpectedSize(BATCH_COUNT);private CategoryMapper categoryMapper;public ExcelListener(CategoryMapper categoryMapper){this.categoryMapper = categoryMapper;}//读取结束之前,每次调用invoke()方法@Overridepublic void invoke(T t, AnalysisContext analysisContext) {CategoryExcelVo categoryExcelVo = (CategoryExcelVo) t;cacheList.add(categoryExcelVo);if(cacheList.size() >= BATCH_COUNT){saveData();cacheList = ListUtils.newArrayListWithExpectedSize(BATCH_COUNT);}}@Overridepublic void doAfterAllAnalysed(AnalysisContext analysisContext) {saveData();}private void saveData(){categoryMapper.insertData(cacheList);}
}

读取

@Override
public void importData(MultipartFile file) {try {ExcelListener<CategoryExcelVo> listener = new ExcelListener<>(categoryMapper);EasyExcel.read(file.getInputStream(),CategoryExcelVo.class,listener).sheet().doRead();} catch (IOException e) {throw new GuiguException(ResultCodeEnum.DATA_ERROR);}
}

写入

@Overridepublic void exportData(HttpServletResponse response) {try {// 设置响应结果类型response.setContentType("application/vnd.ms-excel");response.setCharacterEncoding("utf-8");// 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系String fileName = URLEncoder.encode("分类数据", "UTF-8");response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");//response.setHeader("Access-Control-Expose-Headers", "Content-Disposition");// 查询数据库中的数据List<Category> categories = categoryMapper.selectAll();List<CategoryExcelVo> res = new ArrayList<>();categories.forEach(category ->{CategoryExcelVo temp = new CategoryExcelVo();BeanUtils.copyProperties(category,temp,CategoryExcelVo.class);res.add(temp);});EasyExcel.write(response.getOutputStream(),CategoryExcelVo.class).sheet().doWrite(res);} catch (IOException e) {throw new GuiguException(ResultCodeEnum.DATA_ERROR);}}

使用POI实现Excel文件的读写

导入依赖

<dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>5.2.0</version>
</dependency>
<dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>5.2.0</version>
</dependency>

读取

 /*** 通过POI获取Excel文件中的内容* @throws Exception*/public static void read() throws Exception{FileInputStream in = new FileInputStream("E:\\info.xlsx");XSSFWorkbook excel = new XSSFWorkbook(in);XSSFSheet sheet = excel.getSheetAt(0);//获取有文字的最后一行行号int lastRowNum = sheet.getLastRowNum();for(int i = 1;i <= lastRowNum;i++){//获得某一行XSSFRow row = sheet.getRow(i);System.out.println(row.getCell(1).getStringCellValue() + " " +row.getCell(2).getStringCellValue());}excel.close();in.close();}

写入

    /*** 通过POI创建Excel文件且写入文件内容*/public static void write() throws Exception{//在内容中创建一个Excel文件XSSFWorkbook excel = new XSSFWorkbook();//在Excel文件中创建sheet页XSSFSheet sheet = excel.createSheet("info");//在Excel文件中创建对象  索引从0开始XSSFRow row = sheet.createRow(1);//创建单元格并且写入文件内容row.createCell(1).setCellValue("姓名");row.createCell(2).setCellValue("城市");//创建一个新行row = sheet.createRow(2);//创建单元格并且写入文件内容row.createCell(1).setCellValue("张三");row.createCell(2).setCellValue("北京");row = sheet.createRow(3);//创建单元格并且写入文件内容row.createCell(1).setCellValue("李四");row.createCell(2).setCellValue("南京");//通过输出流将内存中的内容写入磁盘OutputStream out = new FileOutputStream(new File("E:\\info.xlsx"));excel.write(out);out.close();excel.close();}

使用场景(数据导出)

 public void exportBusinessData(HttpServletResponse response) {//查数据库,获取营业数据LocalDate dateBegin = LocalDate.now().minusDays(30);LocalDate dateEnd = LocalDate.now().minusDays(1);LocalDateTime begin = LocalDateTime.of(dateBegin, LocalTime.MIN);LocalDateTime end = LocalDateTime.of(dateEnd, LocalTime.MAX);//查询概览数据BusinessDataVO businessDataVO = workspaceService.getBusinessData(begin, end);//通过POI将数据写入到Excel中InputStream in = this.getClass().getClassLoader().getResourceAsStream("template/运营数据报表模板.xlsx");try {//基于模板文件创建一个新的Excel文件XSSFWorkbook excel = new XSSFWorkbook(in);//填充数据//获取表格文件sheet标签页XSSFSheet sheet = excel.getSheet("sheet1");//填充时间段sheet.getRow(1).getCell(1).setCellValue("时间: " + dateBegin + " 至 " + dateEnd);//获得第四行XSSFRow row = sheet.getRow(3);row.getCell(2).setCellValue(businessDataVO.getTurnover());row.getCell(4).setCellValue(businessDataVO.getOrderCompletionRate());row.getCell(6).setCellValue(businessDataVO.getNewUsers());row = sheet.getRow(4);row.getCell(2).setCellValue(businessDataVO.getValidOrderCount());row.getCell(4).setCellValue(businessDataVO.getUnitPrice());for(int i = 0;i < 30;i++){LocalDate date = dateBegin.plusDays(i);//查询某一天的数据BusinessDataVO businessData = workspaceService.getBusinessData(LocalDateTime.of(date, LocalTime.MIN), LocalDateTime.of(date, LocalTime.MAX));row = sheet.getRow(7 + i);row.getCell(1).setCellValue(date.toString());row.getCell(2).setCellValue(businessData.getTurnover());row.getCell(3).setCellValue(businessData.getValidOrderCount());row.getCell(4).setCellValue(businessData.getOrderCompletionRate());row.getCell(5).setCellValue(businessData.getUnitPrice());row.getCell(6).setCellValue(businessData.getNewUsers());}//通过输出流将Excel文件下载到客户端浏览器ServletOutputStream out = response.getOutputStream();excel.write(out);in.close();out.close();excel.close();} catch (IOException e) {e.printStackTrace();}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/826149.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C#字符串对称加密

大家好&#xff0c;我是阿赵。   这里分享个C#对称加密字符串的方法。   所谓的对称加密&#xff0c;意思是把原字符串通过秘钥&#xff0c;加密成另外一串字符串&#xff0c;然后可以通过秘钥还原回原字符串。 这种方法是基于Base64的&#xff0c;加密方法如下&#xff1a…

JAVA基础面试题(第九篇)中! 集合与数据结构

JAVA集合和数据结构也是面试常考的点&#xff0c;内容也是比较多。 在看之前希望各位如果方便可以点赞收藏&#xff0c;给我点个关注&#xff0c;创作不易&#xff01; JAVA集合 11. HashMap 中 key 的存储索引是怎么计算的&#xff1f; 首先根据key的值计算出hashcode的值…

隧道代理的优势与劣势分析

“随着互联网的快速发展&#xff0c;网络安全已经成为一个重要的议题。为了保护个人和组织的数据&#xff0c;隧道代理技术逐渐成为网络安全的重要工具。隧道代理通过在客户端和服务器之间建立安全通道&#xff0c;加密和保护数据的传输&#xff0c;有效地防止黑客入侵和信息泄…

15-partition table (分区表)

ESP32-S3的分区表 什么是分区表&#xff1f;&#x1f914; ESP32-S3的分区表是用来确定在ESP32-S3的闪存中数据和应用程序的布局。每个ESP32-S3的闪存可以包含多个应用程序&#xff0c;以及多种不同类型的数据&#xff08;例如校准数据、文件系统数据、参数存储数据等&#x…

Scala 第一篇 基础篇

Scala 第一篇 基础篇 一、变量与常量 1、变量2、常量 二、数据类型 1、数据基本类型概览2、元组的声明与使用3、Range介绍和使用4、Option 类型的使用和设计5、类型别名 三、运算符四、程序逻辑 1、一切都是表达式2、分支语句3、循环语句 五、集合 1、List2、Set3、Map4、Arra…

Ubuntu如何给tar.gz文件创建桌面快捷方式

在Ubuntu中&#xff0c;给.tar.gz文件创建URL桌面图标快捷方式或者是启动脚本桌面图标快捷方式可以通过创建一个.desktop文件来实现。.desktop文件是Linux系统中用于定义应用程序启动器的文件格式&#xff0c;它们通常包含图标、名称和执行命令等信息。以下是创建.tar.gz文件的…

有影响力的测试者

在本文中&#xff0c;我想强调测试人员在确保软件质量方面发挥的关键作用。更确切地说&#xff0c;他们应该发挥的作用。我们不仅应该专注于发现错误&#xff0c;还应该专注于积极提高产品质量。这意味着拥抱团队合作&#xff0c;拥有学习的心态&#xff0c;成为技术和商业方面…

MySQL高级(索引-性能分析-explain执行计划)

explain 或者 desc 命令获取 MySQL 如何执行 select 语句的信息&#xff0c;包括在 select 语句执行过程中表如何连接和连接的顺序。 -- 直接在 select 语句之前加上关键字 explain / desc explain select 字段列表 from 表名 where 条件 &#xff1b; explain select * …

电机控制专题(一)——最大转矩电流比MTPA控制

文章目录 电机控制专题(一)——最大转矩电流比MTPA控制前言理论推导仿真验证轻载1Nm重载30Nm 总结 电机控制专题(一)——最大转矩电流比MTPA控制 前言 MTPA全称为Max Torque Per Ampere&#xff0c;从字面意思就可以知道MTPA算法的目的是一个寻优最值问题&#xff0c;可以从以…

SQL Server 2022 安装及使用

SQL Server 2022 前言一、安装SQL Server 2022下载SQL Server 2022安装SQL Server 2022配置SQL Server 2022 二、安装SQL Server Management Studio下载SQL Server Management Studio安装SSMS-Setup-CHS 三、使用SQL Server 2022四、解决连接到服务器报错问题 前言 SQL Serve…

git 快问快答

我在实习的时候&#xff0c;是用本地开发&#xff0c;然后 push 到 GitHub 上&#xff0c;之后再从 Linux 服务器上拉 GitHub 代码&#xff0c;然后就可以了。一般程序是在 Linux 服务器上执行的&#xff0c;我当时使用过用 Linux 提供的命令来进行简单的性能排查。 在面试的时…

js 过滤 json 数据

js 过滤 json 数据 一、一维数组过滤1、filter2、map 二、复杂数组过滤三、树形数据过滤四、过滤附件数组 — filter、map、findIndex 一、一维数组过滤 1、filter let arr [{id: 1,name: "张三",age: 18},{id: 2,name: "李四",} ] arr arr.filter(ite…

应用编程之进程(三-通信篇)

所谓进程间通信指的是系统中两个进程之间的通信&#xff0c;不同的进程都在各自的地址空间中、相互独立、隔离&#xff0c;所以它们是处在于不同的地址空间中&#xff0c;因此相互通信比较难&#xff0c;Linux 内核提供了多种进程间通信的机制。 大部分的程序是不要考虑进程间…

Microchip逆市扩张,接连收购2家公司

尽管年初传来降薪停工的消息&#xff0c;全球领先的半导体解决方案供应商Microchip并未因此停下扩张的脚步。相反&#xff0c;该公司在短短的一个月内&#xff0c;接连宣布收购两家公司&#xff0c;展现了其坚定的市场布局和前瞻的战略眼光。 4月11日&#xff0c;Microchip成功…

二进制OpenStack

二进制搭建OpenStack 1.环境准备 1.1机器的准备 主机名服务器配置操作系统IP地址controller-node4C8Gcentos7.9172.17.1.117computer-node4C8Gcentos7.9172.17.1.118 1.2网络架构 [rootcotroller-node ~]# ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noque…

css 中backdrop-filter使用

一、概念与用途 backdrop-filter 用于在元素背后的区域应用图形效果。它允许我们改变元素背后内容的视觉效果&#xff0c;从而创造出新颖、引人注目的界面设计。通过应用不同的滤镜函数&#xff0c;我们可以为页面背景添加模糊、亮度调整、颜色变换等效果。 二、支持的滤镜函…

linux对网络的监控操作学习--端口、流量、IP

文章目录 linux对网络的监控操作学习--端口、流量、IP理解Netfilter队列设置iptables规则以使用队列使用用户空间程序处理队列中的数据包linux用户空间使用Python实现使用rust实现功能 综合应用注意事项其他实现方式nftablesfirewalldufw (Uncomplicated Firewall)tc (Traffic …

Java面试必问题46:Gateway详解以及使用方法

Gateway&#xff08;网关&#xff09;是一种在微服务架构中起到请求转发、路由和过滤的作用的组件。它作为系统的入口点&#xff0c;接收所有的客户端请求&#xff0c;并将它们转发到相应的服务上进行处理。以下是Gateway网关的作用和使用方式的说明&#xff1a; 作用&#xff…

Java JNI调用本地方法1(调用C++方法)

一、基础概念 1、JNI&#xff08;Java Native interface&#xff09;:sun公司提供的JNI是Java平台的一个功能强大的接口&#xff0c;实现java和操作系统本地代码的相互调用功能&#xff0c;系统本地代码通常是由其他语言编写的&#xff0c;如C。 二、JNI使用步骤 1、定义一个J…

选定进行压缩的卷可能已损坏。请使用chkdsk来修复损坏问题,然后尝试再次压缩该卷

Windows Server 2008R2环境下&#xff0c;进行磁盘重新分区时&#xff0c;想要对系统盘进行“压缩卷”&#xff0c;结果报错提示“选定进行压缩的卷可能已损坏。请使用Chkdsk来修复损坏问题&#xff0c;然后尝试再次压缩该卷。”这是硬盘出现了坏道导致的&#xff0c;硬盘出错无…