一文帶你了解FastExcel的使用
我們知道 EasyExcel 在作者從阿里離職之后就停止維護(hù)了,但在前兩周 EasyExcel 原作者推出了他的升級(jí)版框架 FastExcel。以下是 FastExcel 的上手實(shí)戰(zhàn)過(guò)程,帶大家一起提供新框架的魅力。
FastExcel 是由原 EasyExcel 作者創(chuàng)建的最新作品,作者在 2023 年從阿里離職后,隨著阿里宣布停止更新 EasyExcel,所以他就決定繼續(xù)維護(hù)和升級(jí)這個(gè)項(xiàng)目。在重新開始時(shí),作者為它起名為 FastExcel,以突出這個(gè)框架在處理 Excel 文件時(shí)的高性能表現(xiàn),而不僅僅是簡(jiǎn)單易用。
FastExcel 仍是免費(fèi)的開源框架,它具備以下特點(diǎn):
- 完全兼容原 EasyExcel 的所有功能和特性,這使得用戶可以無(wú)縫過(guò)渡。
- 從 EasyExcel 遷移到 FastExcel 只需簡(jiǎn)單地更換包名和 Maven 依賴即可完成升級(jí)。
- 在功能上,比 EasyExcel 提供更多創(chuàng)新和改進(jìn)。
- FastExcel 1.0.0 版本新增了讀取 Excel 指定行數(shù)和將 Excel 轉(zhuǎn)換為 PDF 的功能。
FastExcel 具體使用如下。
FastExcel 使用
1.1 添加依賴
<dependency> <groupId>cn.idev.excel</groupId> <artifactId>fastexcel</artifactId> <version>1.0.0</version> <!-- 請(qǐng)確保使用最新版本 --> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency>
1.2 創(chuàng)建實(shí)體類和監(jiān)聽器
1.2.1 創(chuàng)建實(shí)體類
import cn.idev.excel.annotation.ExcelProperty;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Setter
@Getter
@ToString
public class User {
@ExcelProperty("編號(hào)")
private Integer id;
@ExcelProperty("名字")
private String name;
@ExcelProperty("年齡")
private Integer age;
}
1.2.2 創(chuàng)建事件監(jiān)聽器
FastExcel 是依靠事件監(jiān)聽器實(shí)現(xiàn) Excel 逐行讀取文件的,如果沒(méi)有這種逐行處理的機(jī)制和數(shù)據(jù)監(jiān)聽器,在處理大文件時(shí)可能會(huì)導(dǎo)致內(nèi)存溢出。而事件監(jiān)聽器使得數(shù)據(jù)可以邊讀取邊處理,例如,可以直接將數(shù)據(jù)寫入數(shù)據(jù)庫(kù)或者進(jìn)行其他業(yè)務(wù)邏輯處理,避免了大量數(shù)據(jù)在內(nèi)存中的堆積。
import cn.idev.excel.context.AnalysisContext;
import cn.idev.excel.event.AnalysisEventListener;
import java.util.ArrayList;
import java.util.List;
public class BaseExcelListener<T> extends AnalysisEventListener<T> {
// 用于存儲(chǔ)讀取到的Excel數(shù)據(jù)對(duì)象列表
private List<T> dataList = new ArrayList<>();
@Override
public void invoke(T t, AnalysisContext analysisContext) {
// 每讀取一行數(shù)據(jù),就將其添加到dataList中
dataList.add(t);
}
@Override
public void doAfterAllAnalysed(AnalysisContext analysisContext) {
// 當(dāng)所有數(shù)據(jù)讀取完成后,可以在這里進(jìn)行一些后續(xù)操作,如打印讀取到的數(shù)據(jù)數(shù)量
System.out.println("讀取完成,共讀取了 " + dataList.size() + " 條數(shù)據(jù)");
}
// 提供一個(gè)方法用于獲取存儲(chǔ)數(shù)據(jù)的列表
public List<T> getDataList() {
return dataList;
}
}
1.3 實(shí)現(xiàn)寫入和讀取功能
1.3.1 Excel寫入功能
// Excel寫入功能
@GetMapping("/download")
public void download(HttpServletResponse response) throws IOException {
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
response.setCharacterEncoding("utf-8");
String fileName = URLEncoder.encode("test", "UTF-8");
response.setHeader("Content-disposition",
"attachment;filename*=utf-8''" + fileName + ".xlsx");
// 寫入數(shù)據(jù)
FastExcel.write(response.getOutputStream(), User.class)
.sheet("模板")
.doWrite(buildData());
}
// 創(chuàng)建測(cè)試數(shù)據(jù)
private List<User> buildData() {
// 創(chuàng)建 User 測(cè)試數(shù)據(jù)
User user1 = new User();
user1.setId(1);
user1.setName("張三");
user1.setAge(18);
User user2 = new User();
user2.setId(2);
user2.setName("李四");
user2.setAge(19);
return List.of(user1, user2);
}
以上代碼執(zhí)行效果如下:

1.3.2 Excel讀取功能
// Excel讀取功能
@PostMapping("/upload")
public ResponseEntity<String> upload(@RequestParam("file") MultipartFile file) {
if (file.isEmpty()) {
return ResponseEntity.badRequest().body("請(qǐng)選擇一個(gè)文件上傳!");
}
try {
BaseExcelListener<User> baseExcelListener = new BaseExcelListener<>();
FastExcel.read(file.getInputStream(), User.class,
baseExcelListener).sheet().doRead();
// 得到讀取數(shù)據(jù)
List<User> dataList = baseExcelListener.getDataList();
System.out.println(dataList);
return ResponseEntity.ok("文件上傳并處理成功!");
} catch (IOException e) {
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body("文件處理失??!");
}
}
以上代碼執(zhí)行效果如下:

EasyExcel 如何升級(jí)到FastExcel
2.1 修改依賴
將 EasyExcel 的依賴替換為 FastExcel 的依賴,如下:
<!-- easyexcel 依賴 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>xxxx</version> </dependency>
依賴替換為:
<dependency> <groupId>cn.idev.excel</groupId> <artifactId>fastexcel</artifactId> <version>1.0.0</version> </dependency>
2.2 修改代碼
將 EasyExcel 的包名替換為 FastExcel 的包名,如下:
// 將 easyexcel 的包名替換為 FastExcel 的包名 import com.alibaba.excel.**;
替換為
import cn.idev.excel.**;
Excel轉(zhuǎn)換為PDF
FastExcel 支持將 Excel 文件轉(zhuǎn)換為 PDF 文件,F(xiàn)astExcel 將 Excel 轉(zhuǎn)為Pdf 底層依賴于 Apache POI 和 itext-pdf。受限于 itext-pdf 的許可證,請(qǐng)確保您的使用符合 itext-pdf 的許可證,后續(xù) FastExcel 將支持更多的 PDF 轉(zhuǎn)換功能替換 itext-pdf,實(shí)現(xiàn)代碼如下:
FastExcel.convertToPdf(new File("excelFile"),new File("pdfFile"),null,null);
小結(jié)
FastExcel 依然是原來(lái)的那個(gè) EasyExcel,但又不完全是 EasyExcel,希望 FastExcel 越做越好。各位小伙伴們,一起體驗(yàn)起來(lái)吧。
以上就是一文帶你了解FastExcel的使用的詳細(xì)內(nèi)容,更多關(guān)于FastExcel使用的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
用Java實(shí)現(xiàn)小球碰壁反彈的簡(jiǎn)單實(shí)例(算法十分簡(jiǎn)單)
下面小編就為大家?guī)?lái)一篇用Java實(shí)現(xiàn)小球碰壁反彈的簡(jiǎn)單實(shí)例(算法十分簡(jiǎn)單)。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-08-08
springBoot靜態(tài)資源加載不到,并且配置了也不生效問(wèn)題及解決
這篇文章總結(jié)了一個(gè)在Spring Boot 2.6.x版本中,由于路徑匹配策略改變導(dǎo)致靜態(tài)資源無(wú)法加載的問(wèn)題,并提供了解決方案:通過(guò)配置類或在配置文件中設(shè)置路徑匹配策略為AntPathMatcher,或者直接降級(jí)Spring Boot版本2025-02-02
Java基礎(chǔ)之打印萬(wàn)年歷的簡(jiǎn)單實(shí)現(xiàn)(案例)
下面小編就為大家?guī)?lái)一篇Java基礎(chǔ)之打印萬(wàn)年歷的簡(jiǎn)單實(shí)現(xiàn)(案例)。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-07-07
Java 并發(fā)編程之ThreadLocal詳解及實(shí)例
這篇文章主要介紹了Java 并發(fā)編程之ThreadLocal詳解及實(shí)例的相關(guān)資料,需要的朋友可以參考下2017-02-02
springboot實(shí)現(xiàn)上傳并解析Excel過(guò)程解析
這篇文章主要介紹了springboot實(shí)現(xiàn)上傳并解析Excel過(guò)程解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-09-09
一文詳解MySql外連接查詢?cè)赟pringBoot中的具體使用
外連接通常分為左外連接,右外連接和全外連接,這篇文章主要為大家詳細(xì)介紹了如何在SpringBoot中使用MySql的外連接查詢,需要的可以參考下2025-02-02
Spring Boot如何使用JDBC獲取相關(guān)的數(shù)據(jù)詳解
這篇文章主要給大家介紹了關(guān)于Spring Boot如何使用JDBC獲取相關(guān)數(shù)據(jù)的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-03-03

