首页 > 其他分享 >操作Excel

操作Excel

时间:2024-11-05 21:10:52浏览次数:1  
标签:sheet Excel excel createCell new 操作 row

EasyExcel 导入导出

是阿里巴巴开源的一个 Excel 处理工具,专门用于简化 Excel 文件的读写操作。

1、 添加 Maven 依赖

<dependency>  
    <groupId>com.alibaba</groupId>  
    <artifactId>easyexcel</artifactId>  
    <version>3.2.0</version> <!-- 使用最新版本 -->  
</dependency>  

2、定义数据模型

首先需要定义一个数据模型类,用于映射 Excel 中的每一行数据。

import com.alibaba.excel.annotation.ExcelProperty;  
import com.alibaba.excel.annotation.WorkbookStyle;  
import lombok.Data;  

@Data  
public class UserData {  
    
    @ExcelProperty("用户ID")  
    private Long id;  

    @ExcelProperty("用户名")  
    private String name;  

    @ExcelProperty("年龄")  
    private Integer age;  
} 

3. 写入 Excel 文件

public static void main(String[] args) {  
   String fileName = "user_data.xlsx";  
   List<UserData> data = new ArrayList<>();  
   data.add(new UserData(1L, "张三", 25));  
   data.add(new UserData(2L, "李四", 30));  
   // 写入 Excel  
   EasyExcel.write(fileName, UserData.class)  
              .sheet("用户信息") // 工作表名称  
     .doWrite(data);  
}  

4. 读取 Excel 文件

public static void main(String[] args) {  
	  String fileName = "user_data.xlsx";  
	  // 读取 Excel  
      EasyExcel.read(fileName, UserData.class, new AnalysisEventListener<UserData>() {  
      @Override  
      public void invoke(UserData userData, AnalysisContext analysisContext) {  
         System.out.println("读取到数据: " + userData);  
      }  

       @Override  
       public void doAfterAllAnalysed(AnalysisContext analysisContext) {  
                // 读取完所有数据后的操作  
              System.out.println("所有数据读取完毕!");  
      }  
   }).sheet().doRead();  
}  

注解:你可以使用不同的注解来配置字段映射、格式化等,例如 @ExcelProperty 用于定义 Excel 列名,@DateTimeFormat 用于日期格式化等。

根据Excel模板写入导出

引入依赖

<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>5.2.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>5.2.5</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-scratchpad -->
<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-scratchpad</artifactId>
    <version>5.2.5</version>
</dependency>

写入Excel文件

//在内存中创建一个Excel文件
XSSFWorkbook excel = new XSSFWorkbook();
//在Excel文件中创建一个Sheet页
XSSFSheet sheet = excel.createSheet("info");
//在Sheet中创建行对象,rownum编号从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("南京");
//通过输出流将内存中的Excel文件写入到磁盘
FileOutputStream out = new FileOutputStream(new File("D:\\info.xlsx"));
excel.write(out);
//关闭资源
out.close();
excel.close();

读取Excel文件

InputStream in = new FileInputStream(new File("D:\\info.xlsx"));
//读取磁盘上已经存在的Excel文件
XSSFWorkbook excel = new XSSFWorkbook(in);
//读取Excel文件中的第一个Sheet页
XSSFSheet sheet = excel.getSheetAt(0);
//获取Sheet中最后一行的行号
int lastRowNum = sheet.getLastRowNum();
for (int i = 1; i <= lastRowNum ; i++) {
  //获得某一行
  XSSFRow row = sheet.getRow(i);
  //获得单元格对象
  String cellValue1 = row.getCell(1).getStringCellValue();
  String cellValue2 = row.getCell(2).getStringCellValue();
  System.out.println(cellValue1 + " " + cellValue2);
}
//关闭资源
in.close();
excel.close();

先读取Excel模板,再写入数据

InputStream in = new FileInputStream(new File("D:\\info.xlsx"));
//读取磁盘上已经存在的Excel文件
XSSFWorkbook excel = new XSSFWorkbook(in);
//读取Excel文件中的第一个Sheet页
XSSFSheet sheet = excel.getSheetAt(0);
//获取Sheet中最后一行的行号
int lastRowNum = sheet.getLastRowNum();
// 设置表格样式
CellStyle style = excel.createCellStyle();
 // 设置上边框
style.setBorderTop(BorderStyle.THIN);
// 设置下边框
style.setBorderBottom(BorderStyle.THIN);
// 设置左边框
style.setBorderLeft(BorderStyle.THIN);
// 设置右边框
style.setBorderRight(BorderStyle.THIN);
style.setAlignment(HorizontalAlignment.CENTER);
//在Sheet中创建行对象,rownum编号从lastRowNum开始
XSSFRow row = sheet.createRow(lastRowNum++);
//创建单元格并且写入文件内容
row.createCell(1).setCellValue("姓名");
row.createCell(2).setCellValue("城市");
//创建一个新行
row = sheet.createRow(lastRowNum+2);
row.createCell(1).setCellValue("张三"); 
row.createCell(2).setCellValue("北京");

//通过输出流将内存中的Excel文件写入到磁盘
FileOutputStream out = new FileOutputStream(new File("D:\\info.xlsx"));
excel.write(out);
//关闭资源
out.close();
excel.close();

标签:sheet,Excel,excel,createCell,new,操作,row
From: https://www.cnblogs.com/21CHS/p/18528851

相关文章

  • 【Azure App Service】使用Microsoft.Office.Interop.Word来操作Word文档,部署到App Se
    问题描述在.NET项目中,使用Microsoft.Office.Interop.Word组件来操作Word文档,使用了Microsoft.Office.Interop.Word.Document对象中的Open和SaveAs方法。##打开文件doc=app.Documents.Open(refinputFile,refnullobj,refnullobj,refnullobj,refnullobj,refnullobj,......
  • Linux 操作系统如何启用 secure boot(不限发行版)(简单的方法)
    Linux操作系统如何启用secureboot(不限发行版)(简单的方法)很多方法比较复杂,而且容易出现各种不兼容问题,这里我记录我的一种比较简单的方法。该方法在我的kalilinux(基于debian)已测试成功。参考文献:archwiki安装sbctlarchlinux:sudopacman-Ssbctlgentoo:sudoemerge......
  • 中药材快速计算器 可以从Excel导入药品单价信息 佳易网中药复制文本划价管理系统操作
    一、概述【软件试用版文件资源可以点文章最后官网卡片按钮了解】中药材快速计算器可以从Excel导入药品单价信息 ‌核心功能‌:可快速划价计算出总金额,支持多副药方计算,并保存记录。‌操作简便‌:用户只需复制药方文本,点击划价按钮,即可自动计算出金额。可以从Excel表格导入......
  • 操作系统学习笔记-3.1内存管理
    文章目录内存的地址绝对装入静态重定位动态重定位链接覆盖和交换1.覆盖(Overwrite)在内存管理中的作用2.交换(Swap)在内存管理中的作用连续分配管理方式固定分区分配的关键概念优点缺点示例动态分区分配的关键概念优点缺点示例基本分页存储管理基本地址变换机构页表寄存......
  • esayExcel导入导出
    一、导入1.引入esayExcelJAR包<dependency><groupId>com.alibaba</groupId><artifactId>easyexcel</artifactId><version>2.2.7</version></dependency>2.创建Model类packagecom.bjsasc.avmom.listener;impor......
  • 用pandas 读取excel文件,存到数组中,调整数组的值
    importpandasaspdimportpymysqlfromdatetimeimportdatetime#定义一个自增的全局变量counter=1defincrement():globalcountercounter+=1returncounter#调用函数并打印结果#print(get_current_date())defget_array():#读取Excel......
  • C语言学习之操作符
    (1)二进制、十六进制、八进制不同进制只是数值不同的表达形式,二进制转换十进制省略,从十进制转换到二进制(不断除二取余自下向上将余数从左到右写下来,就转换到二进制);从二进制转换八进制(从左向右每三位按二进制位换算一个八进制位,不够三个直接换算);从二进制转换到十六进制(跟八进制......
  • 2.路径操作装饰器方法参数简介
    1.get请求2.post请求3.put请求4.delete请求5.@app.pos()中参数的功能应用 ......
  • Windows Server 2025 Enhanced Storage 是微软在其未来版本的 Windows Server 操作系
    WindowsServer2025EnhancedStorage是微软在其未来版本的WindowsServer操作系统中引入的一项新技术或功能,旨在增强存储管理和优化存储性能。虽然在我的知识库中没有具体的“WindowsServer2025EnhancedStorage”这个专有术语的详细描述,但我可以根据类似技术的背景以及微......
  • 你肯定不知道:Vue多文件上传时拖放操作的优雅处理
            多文件上传是Vue应用的常见操作。操作要求:(1)允许反复拖放多个文件到待上传区域(2)自动过滤掉重复拖放的文件(3)拖放后,形成待上传文件列表的简易缩略图(4)双击文件名,可移去某个文件。具体效果,如下图所示。        我们可将拖放操作设计为一个插件指令dragDro......