您现在的位置是:首页 > java技术交流java技术交流
springboot 使用Apache POI Excel文件读取和写入
上善若水2021-01-16 11:29:49【java技术交流】 3969人已围观
简介Excel作为常用的办公文件,存储数据十分便捷,工作中也是大范围使用.在搜索找到最广泛的处理excel文件的包还Apache的工具包!试试excel在web项目中的基本使用吧! 基本工作 准备一个基本
Excel作为常用的办公文件,存储数据十分便捷,工作中也是大范围使用.在搜索找到最广泛的处理excel文件的包还Apache的工具包!
试试excel在web项目中的基本使用吧!
基本工作 准备一个基本的springboot项目 略
导包
导入最新org.apache.poi 目前最新的是4.1.2
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.2</version>
</dependency>
编写简单页excel.html面测试上传和下载
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<title>测试上传demo</title>
</head>
<body>
<form action="/uploadExcel" method="post" enctype="multipart/form-data">
<input type="file" name="file">
<input type="submit" value="提交">
</form>
<a href="/downExcel">导出excel</a>
</body>
</html>
编写控制器方法
@GetMapping("/excel")
public String excel() {
return "excel";
}
@GetMapping("/downExcel")
public String downExcel(HttpServletResponse response) throws IOException {
String[] head = {"头1", "头1", "头3"};
List<String[]> values = new ArrayList<>();
for (int i = 0; i < 10; i++) {
values.add(new String[]{"php最好的语言" + i, "java天下第一" + i, "python我年轻我骄傲" + i});
}
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet("Sheet1");
HSSFRow row = sheet.createRow(0);
row.createCell(0).setCellValue(head[0]);
row.createCell(1).setCellValue(head[1]);
row.createCell(2).setCellValue(head[2]);
for (int i = 1; i <= values.size(); i++) {
row = sheet.createRow(i);
for (int j = 0; j < values.get(i - 1).length; j++) {
HSSFCell cell = row.createCell(j);
cell.setCellValue(values.get(i - 1)[j]);
}
}
workbook.setActiveSheet(0);
response.setCharacterEncoding("utf-8");
response.setContentType("multipart/form-data");
response.setHeader("Content-Disposition", "attachment;fileName=temp.xlsx");
ServletOutputStream outputStream = response.getOutputStream();
workbook.write(outputStream);
return null;
}
@PostMapping("/uploadExcel")
@ResponseBody
public List uploadExcel(@RequestParam(value = "file") MultipartFile file) throws IOException {
HSSFWorkbook workbook = new HSSFWorkbook(file.getInputStream());
//获取工作表
HSSFSheet sheet = workbook.getSheetAt(0);
List<List<String>> data=new ArrayList<>();
int lastRowNum = sheet.getLastRowNum();
for (int i = 0; i < lastRowNum; i++) {
//获取指定行
HSSFRow row = sheet.getRow(i);
if (row == null) {
continue;
}
List<String> rowList=new ArrayList<>();
short lastCellNum = row.getLastCellNum();
for (int j = 0; j < lastCellNum; j++) {
HSSFCell cell = row.getCell(j);
rowList.add(cell.getStringCellValue());
}
data.add(rowList);
}
workbook.close();
return data;
}
最后实现效果.
很赞哦! (3)
相关文章
随机图文
-
docker部署php项目 nginx+php docker搭建
1.拉取nginx镜像dockerpullnginx 2.拉取php-fpm这里我就选择php7.4版本的了dockerpullphp:7.4-fpm 3.先运行nginx试试配置有没有啥问 -
linux centos 安装jenkins
centos 安装jenkins,我们都知道一般项目都是运行再服务器里面,我们本地的window可能和生产环境不一样,着手对centos安装jenkins. 1.jenkins是java开发的运行必须 -
2020.09.07随笔
哈哈哈,论离公司近的好处,晚上意外发现忘记打卡,然后,直接就走到公司附近,打上卡,美滋滋,瞬间又挣了50块钱回来.钉钉还是蛮智能的,都跨天了还能打卡成功,美滋滋.今天又是平淡的一天,码码代码,打打工, -
php yar扩展实现rpc调用
php使用yar使用扩展进行rpc调用,以最大程度实现程序的解耦,类似java微服务互相调用.是一个不错的方式,简单使用rpc使用.yar使用文档:https://www.php.net/manual